mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
26 lines
320 B
CSS
26 lines
320 B
CSS
.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;
|
|
}
|