Skip to content

Commit

Permalink
fix: adjust type scale for mobile devices (resolves inclusive-design#37
Browse files Browse the repository at this point in the history
  • Loading branch information
greatislander authored Jul 28, 2023
1 parent 9515da5 commit 44dc963
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/static/css/_variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
(var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) /
(var(--fluid-max-width) - var(--fluid-min-width))
);
--f--1-min: 12.4444;
--f--1-min: 12;
--f--1-max: 14;
--step--1:
calc(
Expand All @@ -164,21 +164,21 @@
((var(--f-0-min) / 16) * 1rem) + (var(--f-0-max) - var(--f-0-min)) *
var(--fluid-bp)
);
--f-1-min: 28.4444;
--f-1-min: 28;
--f-1-max: 32;
--step-1:
calc(
((var(--f-1-min) / 16) * 1rem) + (var(--f-1-max) - var(--f-1-min)) *
var(--fluid-bp)
);
--f-2-min: 46.2222;
--f-2-min: 36;
--f-2-max: 52;
--step-2:
calc(
((var(--f-2-min) / 16) * 1rem) + (var(--f-2-max) - var(--f-2-min)) *
var(--fluid-bp)
);
--f-3-min: 78.2222;
--f-3-min: 48;
--f-3-max: 88;
--step-3:
calc(
Expand Down

0 comments on commit 44dc963

Please sign in to comment.