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

44 lines
No EOL
552 B
CSS

.toolbar {
display: flex;
justify-content: flex-start;
align-content: flex-start;
position: fixed;
z-index: 2;
gap: 2px;
}
.toolbarTop {
top: 8px;
flex-direction: column;
}
.toolbarBottom {
bottom: 8px;
flex-direction: column-reverse;
}
.toolbarLeft {
left: 8px;
}
.toolbarRight {
right: 8px;
}
.toolbarVadapt {
top: 8px;
flex-direction: column;
}
@media (max-width: 800px) {
.toolbarVadapt {
top: unset;
bottom: 8px;
flex-direction: column-reverse;
}
}