-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: changed typography to use only css-properties #174
Conversation
🔭🐙🐈 Test this branch here: https://db-ui.github.io/base/review/refactor-typography |
@@ -29,7 +29,7 @@ | |||
<code class="language-scss">/* ./index.scss */ | |||
@import "@db-ui/base/build/scss/db-ui-base"; | |||
|
|||
body { | |||
:root { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nmerget why have you moved from body
to :root
?
@@ -21,9 +21,24 @@ | |||
<h6 data-variant="light">Headline 6</h6> | |||
</db-tab> | |||
<db-tab label="Body" name="tab-bar"> | |||
<h1>functional</h1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's best to include the h1 element only once on a page (or at least within a context, like. e.g. section).
No description provided.