web/SettingsNavTab: reduce padding on desktop

This commit is contained in:
wukko 2024-07-29 13:11:29 +06:00
parent a4e0e21a97
commit 8b866ddf6f
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -32,7 +32,7 @@
<style>
.settings-tab {
--small-padding: 4px;
--big-padding: 7px;
--big-padding: 6px;
display: flex;
flex-direction: row;
align-items: center;
@ -96,11 +96,12 @@
justify-content: center;
align-items: center;
padding: var(--small-padding);
border-radius: var(--small-padding);
border-radius: 5px;
}
@media screen and (max-width: 750px) {
.settings-tab {
--big-padding: 7px;
background: none;
padding: var(--big-padding) calc(var(--big-padding) * 1.5);
}