diff options
author | 0neGal <mail@0negal.com> | 2023-01-29 00:44:53 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-01-29 00:44:53 +0100 |
commit | 4b94ba7ae03317e1dee75d637f7355f49c1f2086 (patch) | |
tree | e63d658462db68a21e46d7123acabfc615ac48f1 | |
parent | b4615926e88562461aad1a94520919a48de934e9 (diff) | |
download | Viper-4b94ba7ae03317e1dee75d637f7355f49c1f2086.tar.gz Viper-4b94ba7ae03317e1dee75d637f7355f49c1f2086.zip |
fixed weird looking margin/padding in settings
-rw-r--r-- | src/app/css/popups.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/app/css/popups.css b/src/app/css/popups.css index 70a39a6..8f47d0a 100644 --- a/src/app/css/popups.css +++ b/src/app/css/popups.css @@ -203,6 +203,12 @@ .title { display: flex; + margin-top: calc(var(--padding) * 2); + margin-bottom: calc(var(--padding) / 2); +} + +.title:first-child { + margin-top: 0px; } .title img { @@ -212,6 +218,7 @@ } .title h2 { + margin: 0px; margin-left: calc(var(--padding) / 3); } |