mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
use theme var to set font family
This commit is contained in:
parent
72c377032b
commit
dc0983010e
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user