mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/SettingsTab: fix border radius & padding
This commit is contained in:
parent
5b57c7601d
commit
6fdc63a6c2
1 changed files with 5 additions and 4 deletions
|
@ -21,11 +21,12 @@
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.settings-tab {
|
.settings-tab {
|
||||||
|
--small-padding: 4px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: calc(var(--small-padding) * 2);
|
||||||
padding: 8px;
|
padding: 7px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
background: var(--primary);
|
background: var(--primary);
|
||||||
color: var(--button-text);
|
color: var(--button-text);
|
||||||
|
@ -56,7 +57,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 5px;
|
padding: var(--small-padding);
|
||||||
border-radius: 5px;
|
border-radius: var(--small-padding);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue