Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rasben committed Dec 6, 2023
1 parent 1e6f1b5 commit c6ceb61
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 9 additions & 1 deletion src/stories/Library/counter/counter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@
}

.counter__value {
@include typography($typo__body-large);
@include typography(
$typo__subtitle,
(
excludes: (
"line-height",
),
)
);
line-height: 1em;
text-align: center;

img {
Expand Down
2 changes: 2 additions & 0 deletions src/stories/Library/event-header/event-header.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.event-header {
max-width: $layout__max-width;
margin: 0 auto;

border-bottom: 1px solid $color__global-tertiary-1;
display: grid;
gap: $s-lg;
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Library/logo/logo.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.logo-fallback {
@include typography($typo__h4);
@include typography($typo__body-small);
}

.logo-fallback__text-name {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/scss/tools/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
// Set styling for a font variant, across breakpoints.
// @see mixin map-styling().
// Example usage of this mixin:
// @include typography($font__h4, 'line-height');
// @include typography($font__h4, (excludes: ('line-height'));
// ---
// @param {map} $font - See available maps in _variables.typography.scss ($font__VARIANT).
// @param {options} $options - List of options. Supports:
Expand Down

0 comments on commit c6ceb61

Please sign in to comment.