UX: Larger/Largest font-sizes should be 1px larger on mobile
This commit is contained in:
parent
1022d69101
commit
e7d2a0d42f
|
@ -5,7 +5,13 @@
|
||||||
|
|
||||||
// Base Elements
|
// Base Elements
|
||||||
html {
|
html {
|
||||||
font-size: 15px; // Increasing overall font-size on mobile by 1px
|
font-size: $base-font-size + 1; // Increasing overall font-size on mobile by 1px
|
||||||
|
&.text-size-larger {
|
||||||
|
font-size: $base-font-size-larger + 1;
|
||||||
|
}
|
||||||
|
&.text-size-largest {
|
||||||
|
font-size: $base-font-size-largest + 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
Loading…
Reference in New Issue