poprawki designu

This commit is contained in:
2023-12-10 14:58:19 +01:00
parent 13d3db268e
commit 39d6213e4f
+16 -2
View File
@@ -50,7 +50,7 @@
<div class="pane"> <div class="pane">
Pokazuj maks. Pokazuj maks.
<input type="number" min="1" v-model="store.maxVisibleResults" style="width: 50px" /> <input type="number" min="1" v-model="store.maxVisibleResults" style="width: 3em; margin: 0 0.5em" />
wyników wyników
</div> </div>
@@ -65,7 +65,8 @@
</div> </div>
<div class="changelog" v-if="changelogVisible"> <div class="changelog" v-if="changelogVisible">
<div>Changelog:</div> <h3>Changelog:</h3>
<hr color="white" />
<div v-html="changelog || 'brak zmian'"></div> <div v-html="changelog || 'brak zmian'"></div>
</div> </div>
@@ -349,14 +350,27 @@ label.notify {
} }
} }
.changelog { .changelog {
position: relative;
div {
height: 200px; height: 200px;
overflow: auto; overflow: auto;
} }
h3 {
margin: 0;
}
}
@media screen and (max-width: 550px) { @media screen and (max-width: 550px) {
.pane { .pane {
justify-content: center; justify-content: center;
text-align: center; text-align: center;
} }
.changelog h3 {
text-align: center;
}
} }
</style> </style>