decrease font size on x-small devices

This commit is contained in:
Ray Elliott 2020-03-31 12:58:26 +00:00
parent 81f3835060
commit 86e5bebb13
1 changed files with 6 additions and 0 deletions

View File

@ -2,5 +2,11 @@ body {
font-family: "Montserrat", sans-serif;
color: var(--color__body);
background-color: var(--color-bg);
font-size: 0.9em;
@media (min-width: $bp-xs) {
font-size: 1em;
}
}