Skip to content

Commit

Permalink
Clean up css
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan committed Aug 14, 2024
1 parent b91afd1 commit 61e16dd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/react/src/Heading/Heading.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
margin: 0;
font-size: var(--text-title-size-large);
font-weight: var(--base-text-weight-semibold);
}

.Heading:where([data-variant='large']) {
font: var(--text-title-shorthand-large);
}
&[data-variant='large'] {
font: var(--text-title-shorthand-large);
}

.Heading:where([data-variant='medium']) {
font: var(--text-title-shorthand-medium);
}
&[data-variant='medium'] {
font: var(--text-title-shorthand-medium);
}

.Heading:where([data-variant='small']) {
font: var(--text-title-shorthand-small);
&[data-variant='small'] {
font: var(--text-title-shorthand-small);
}
}

0 comments on commit 61e16dd

Please sign in to comment.