diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-04-24 10:26:50 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-04-24 10:26:50 +0200 |
commit | 894d118a8882f8b24d53b104a44432e5eb2e2790 (patch) | |
tree | c8f0fb4c35effc8e6347b0e52b66324f8acbca03 /styles | |
parent | 00082f5f23f70f01da9eaa24ab42abee5974f33f (diff) |
added dialog on user page when not logged in
Diffstat (limited to 'styles')
-rw-r--r-- | styles/ui.css | 1 | ||||
-rw-r--r-- | styles/utility.css | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/styles/ui.css b/styles/ui.css index 31df20a..5bb67ea 100644 --- a/styles/ui.css +++ b/styles/ui.css @@ -68,6 +68,7 @@ html.dark .button { color: var(--foreground); } .dialogbox { width: 392px; margin: 0; + z-index: 1; } .dialogbox > .title { margin-bottom: var(--spacing-large); } .dialogbox .icon.close { diff --git a/styles/utility.css b/styles/utility.css index beec066..3589267 100644 --- a/styles/utility.css +++ b/styles/utility.css @@ -52,6 +52,8 @@ .floatl { float: left; } .floatn { float: none; } +.w1fr { width: 1fr; } + .w100m2m { width: calc(100% - var(--spacing-medium)); } .w100vw { width: 100vw; } |