mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
44 lines
No EOL
552 B
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;
|
|
}
|
|
} |