You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
613 B
CSS
37 lines
613 B
CSS
#errorOverlay {
|
|
background: var(--bgcolor-danger);
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
left: 0;
|
|
overflow: auto;
|
|
padding: var(--gap);
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.error-title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
#errorOverlay button {
|
|
background-color: rgba(0 0 0 / .5);
|
|
border: none;
|
|
display: inline-block;
|
|
}
|
|
#errorOverlay button:focus {
|
|
outline: 2px solid white;
|
|
outline-offset: var(--focus-outline-offset);
|
|
}
|
|
|
|
#errorOverlay .buttons {
|
|
max-width: var(--max-width);
|
|
}
|
|
@media (orientation: portrait) {
|
|
#errorOverlay .buttons {
|
|
flex-basis: 4rem;
|
|
}
|
|
}
|