fix: do not cover more screen than necessary (title bar) with challenge modal
This commit is contained in:
@@ -89,6 +89,7 @@ p {
|
|||||||
.main-ui-view {
|
.main-ui-view {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
position: relative;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
background-color: var(--sn-stylekit-background-color);
|
background-color: var(--sn-stylekit-background-color);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,7 +103,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.sk-modal {
|
.sk-modal {
|
||||||
position: fixed;
|
position: absolute;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
left: 0;
|
left: 0;
|
||||||
@@ -111,8 +111,8 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: $z-index-modal;
|
z-index: $z-index-modal;
|
||||||
width: 100vw;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 100%;
|
||||||
|
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: var(--sn-stylekit-contrast-foreground-color);
|
color: var(--sn-stylekit-contrast-foreground-color);
|
||||||
|
|||||||
Reference in New Issue
Block a user