1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 23:17:26 +00:00
festa/components/generic/toolbar/bar.module.css

44 lines
552 B
CSS
Raw Normal View History

2022-06-04 03:13:19 +00:00
.toolbar {
display: flex;
justify-content: flex-start;
align-content: flex-start;
position: fixed;
z-index: 2;
gap: 2px;
2022-06-04 03:13:19 +00:00
}
2022-06-11 03:08:49 +00:00
.toolbarTop {
2022-06-04 03:13:19 +00:00
top: 8px;
flex-direction: column;
2022-06-04 03:13:19 +00:00
}
2022-06-11 03:08:49 +00:00
.toolbarBottom {
2022-06-04 03:13:19 +00:00
bottom: 8px;
flex-direction: column-reverse;
2022-06-04 03:13:19 +00:00
}
2022-06-11 03:08:49 +00:00
.toolbarLeft {
2022-06-04 03:13:19 +00:00
left: 8px;
}
2022-06-11 03:08:49 +00:00
.toolbarRight {
2022-06-04 03:13:19 +00:00
right: 8px;
}
2022-06-11 03:08:49 +00:00
.toolbarVadapt {
top: 8px;
flex-direction: column;
}
@media (max-width: 800px) {
2022-06-11 03:08:49 +00:00
.toolbarVadapt {
top: unset;
bottom: 8px;
flex-direction: column-reverse;
}
}