website/sass/general.scss

19 lines
273 B
SCSS
Raw Normal View History

2023-08-29 10:08:14 +02:00
.flex-col {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.flex-row {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
2024-12-15 08:09:10 +01:00
.disable-scroll {
overflow: hidden !important;
position: fixed;
}