2022-06-04 03:13:19 +00:00
|
|
|
.toolbar {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-content: flex-start;
|
|
|
|
|
2022-06-08 00:12:03 +00:00
|
|
|
position: fixed;
|
2022-06-07 10:48:47 +00:00
|
|
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
gap: 2px;
|
2022-06-04 03:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-top {
|
|
|
|
top: 8px;
|
2022-06-07 10:48:47 +00:00
|
|
|
flex-direction: column;
|
2022-06-04 03:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-bottom {
|
|
|
|
bottom: 8px;
|
2022-06-07 10:48:47 +00:00
|
|
|
flex-direction: column-reverse;
|
2022-06-04 03:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-left {
|
|
|
|
left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-right {
|
|
|
|
right: 8px;
|
|
|
|
}
|
2022-06-07 10:34:38 +00:00
|
|
|
|
|
|
|
.toolbar-vadapt {
|
|
|
|
top: 8px;
|
2022-06-07 10:48:47 +00:00
|
|
|
flex-direction: column;
|
2022-06-07 10:34:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
.toolbar-vadapt {
|
|
|
|
top: unset;
|
|
|
|
bottom: 8px;
|
2022-06-07 10:48:47 +00:00
|
|
|
|
|
|
|
flex-direction: column-reverse;
|
2022-06-07 10:34:38 +00:00
|
|
|
}
|
2022-06-07 11:41:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-tool {
|
|
|
|
width: 50px !important;
|
|
|
|
height: 50px !important;
|
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (pointer: fine) {
|
|
|
|
.toolbar-tool {
|
|
|
|
width: 40px !important;
|
|
|
|
height: 40px !important;
|
|
|
|
font-size: medium;
|
|
|
|
}
|
2022-06-07 10:34:38 +00:00
|
|
|
}
|