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

37 lines
454 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: absolute;
}
.toolbar-top {
top: 8px;
}
.toolbar-bottom {
bottom: 8px;
}
.toolbar-left {
left: 8px;
flex-direction: row;
}
.toolbar-right {
right: 8px;
flex-direction: row-reverse;
}
.toolbar-vadapt {
top: 8px;
}
@media (max-width: 800px) {
.toolbar-vadapt {
top: unset;
bottom: 8px;
}
}