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

View file

@ -31,7 +31,7 @@ const parentItems = navigation.value.filter(
<style lang="scss" module> <style lang="scss" module>
.section_title { .section_title {
font-family: var(--family-roboto-slab); font-family: var(--family-headings);
font-weight: 600; font-weight: 600;
margin: 2rem 0 1.5rem; margin: 2rem 0 1.5rem;
font-size: 1.6rem; font-size: 1.6rem;
@ -61,7 +61,7 @@ const parentItems = navigation.value.filter(
} }
.title { .title {
font-family: var(--family-roboto-slab); font-family: var(--family-headings);
font-weight: 700; font-weight: 700;
font-size: 2rem; font-size: 2rem;
} }