use theme var to set font family

This commit is contained in:
srgooglo 2022-03-11 01:06:54 +01:00
parent 72c377032b
commit dc0983010e

View File

@ -62,7 +62,7 @@ body {
text-rendering : optimizeLegibility !important;
background-color: var(--background-color-primary) !important;
font-family : "Varela Round", sans-serif;
font-family : var(--fontFamily);
}
#root {
@ -159,7 +159,7 @@ body {
.fade-transverse-active {
transition: all 250ms;
height : 100%;
height : fit-content;
width : 100%;
}
@ -188,6 +188,19 @@ body {
transform: scale(0.8);
}
.fade-opacity-active {
transition: all 250ms;
opacity : 1;
}
.fade-opacity-leave {
opacity: 0;
}
.fade-opacity-enter {
opacity: 1;
}
.app_initialization {
width : 100vw;
height : 100vh;