Files
ontime/client/src/common/components/state/Empty.module.scss
T
Carlos Valente 9b5d536378 Refact/project (#189)
* refactor: cleanup project entry point
* refactor: remove unused
* refactor: folder restructure
2022-08-03 23:20:23 +02:00

28 lines
345 B
SCSS

@use '../../../theme/main' as *;
.emptyContainer {
width: 100%;
height: 100%;
text-align: center;
color: $bg-black-300;
.empty {
width: 100%;
opacity: 0.3;
}
.text {
font-weight: 600;
font-size: 2em;
}
&.dark {
background: $bg-black;
color: $bg-gray-500;
.empty {
opacity: 1;
}
}
}