fixed variable names

This commit is contained in:
Fedor Katurov 2022-11-12 15:00:35 +06:00
parent 58a8f55ba7
commit 84ca6100cf
2 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@
body,
html {
font-family: var(--family-roboto);
font-family: var(--family-texts);
background: var(--color-background);
color: var(--color-text);
padding: 0;
@ -51,7 +51,7 @@ h2,
h3,
h4,
h5 {
font-family: var(--family-roboto-slab);
font-family: var(--family-headings);
color: var(--color-header);
font-weight: 700;
}
@ -145,9 +145,9 @@ blockquote {
:root {
// fonts
--family-roboto-slab: "Roboto Slab", "Segoe UI", Tahoma, Geneva, Verdana,
--family-headings: "Roboto Slab", "Segoe UI", Tahoma, Geneva, Verdana,
sans-serif;
--family-roboto: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
--family-texts: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
// breakpoints
--size-phone: $phone;