[#181] fix output loading gears for mobile, add a _structure css file in /themes that is shared across themes

This commit is contained in:
Robin Scholtes 2023-05-02 17:54:28 +12:00
parent 4c2c934cd4
commit 5916251893
5 changed files with 21 additions and 14 deletions

View file

@ -73,7 +73,8 @@ label[for="output-text"] {
#output-loader {
position: absolute;
bottom: 0;
bottom: var(--controls-height);
z-index: 100;
left: 0;
width: 100%;
height: 100%;
@ -87,6 +88,12 @@ label[for="output-text"] {
transition: all 0.5s ease;
}
@media only screen and (min-width: 768px){
#output-loader {
bottom: 0;
}
}
#output-loader-animation {
display: block;
position: absolute;