115 lines
1.2 KiB
SCSS
115 lines
1.2 KiB
SCSS
@use '@/assets/css/constants.scss' as constants;
|
|
|
|
#root {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
.body {
|
|
color: constants.$font-main-color;
|
|
user-select: none;
|
|
min-width: 900px;
|
|
min-height: 400px;
|
|
}
|
|
|
|
.fill {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.fill-with {
|
|
width: 100%;
|
|
}
|
|
|
|
.fill-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.background-white {
|
|
background-color: white;
|
|
}
|
|
|
|
.center-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.vertical-center-box {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.horizontal-center-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.icon-size-xs {
|
|
width: 16px;
|
|
height: 16px;
|
|
|
|
> use {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
}
|
|
|
|
.icon-size-sm {
|
|
width: 20px;
|
|
height: 20px;
|
|
|
|
> use {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.icon-size-md {
|
|
width: 24px;
|
|
height: 24px;
|
|
|
|
> use {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
}
|
|
|
|
.icon-size-lg {
|
|
width: 32px;
|
|
height: 32px;
|
|
|
|
> use {
|
|
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
}
|
|
|
|
.icon-size-xl {
|
|
width: 64px;
|
|
height: 64px;
|
|
|
|
> use {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
}
|
|
|
|
.icon-size-menu {
|
|
width: 23px;
|
|
height: 23px;
|
|
|
|
> use {
|
|
width: 23px;
|
|
height: 23px;
|
|
}
|
|
}
|
|
|
|
.flex-horizontal {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-vertical {
|
|
flex-direction: column;
|
|
} |