mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-21 08:30:50 +00:00
21 lines
365 B
CSS
21 lines
365 B
CSS
|
.ui.active.dimmer {
|
||
|
display: flex;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
.ui.dimmer {
|
||
|
align-items: center;
|
||
|
animation-fill-mode: both;
|
||
|
background: var(--color-overlay-backdrop);
|
||
|
display: none;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
opacity: 0;
|
||
|
justify-content: center;
|
||
|
user-select: none;
|
||
|
width: 100%;
|
||
|
will-change: opacity;
|
||
|
z-index: 1000;
|
||
|
}
|