Skip to content

Commit

Permalink
✨ add font size utility classes fs-sm, fs-lg and fs-base
Browse files Browse the repository at this point in the history
  • Loading branch information
krmax44 committed Apr 22, 2024
1 parent 2bf3dbd commit 6117c4e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/styles/main.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@import 'bootstrap/scss/functions';

/* Override variables here */
@import 'variables';

@import 'bootstrap/scss/variables';
@import 'bootstrap/scss/variables-dark';

/* Override variables here */
@import 'variables';

/* Override maps here */
@import 'maps';

Expand Down
8 changes: 8 additions & 0 deletions frontend/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ $container-max-widths: (
);

// Typography
$font-sizes: map.merge(
$font-sizes,
(
'sm': $font-size-sm,
'lg': $font-size-lg,
'base': $font-size-base
)
);
$btn-font-weight: 600;
$badge-font-weight: 600;

Expand Down

0 comments on commit 6117c4e

Please sign in to comment.