14 lines
290 B
SCSS
14 lines
290 B
SCSS
// Copyright 2019-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.facade {
|
|
background: rgba(0, 0, 0, 0.33);
|
|
width: 100vw;
|
|
height: var(--window-height);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
}
|