diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-18 14:28:53 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-18 14:28:53 +0200 |
commit | af796b465c66a61b498facff010b372a52a24508 (patch) | |
tree | 21de47cf4e1b621fc2fd1b7a3408f1fb0f188ce1 /styles/utility.css | |
parent | 465b971fd0cb80004bf60865ddc25df9cd72ba38 (diff) |
wip dialog box
Diffstat (limited to 'styles/utility.css')
-rw-r--r-- | styles/utility.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/styles/utility.css b/styles/utility.css index f8954cd..0393d1d 100644 --- a/styles/utility.css +++ b/styles/utility.css @@ -17,6 +17,7 @@ .posabs { position: absolute; } .posrel { position: relative; } +.posfix { position: fixed; } .t0 { top: 0; } .b0 { bottom: 0; } @@ -61,3 +62,9 @@ text-overflow: ellipsis; } +.abscenter { + top: 51%; + left: 50%; + transform: translate(-50%, -50%); +} + |