libreoffice-online/browser/css/welcome.css
Gökay Şatır 9993453714 Make the wrapper's display "fixed" so it doesn't interfere with the window.
Signed-off-by: Gökay Şatır <gokaysatir@collabora.com>
Change-Id: I7176a0dbc235f8202cbbd4028ac187293d648d8a
2022-09-21 15:45:50 +02:00

26 lines
589 B
CSS

.iframe-welcome-wrap,
.iframe-welcome-content {
position: fixed;
z-index: 1106;
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
background-color: var(--color-overlay);
}
.iframe-welcome-modal {
display: flex;
width: 95%;
height: 95%;
max-width: 700px;
max-height: 512px;
justify-content: center;
align-items: center;
-webkit-box-shadow: 0 0 3px var(--color-box-shadow);
box-shadow: 0 0 3px var(--color-box-shadow);
border-width: 0;
border-radius: var(--border-radius-large);
background-color: var(--color-background-lighter);
}