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.
39 lines
688 B
CSS
39 lines
688 B
CSS
2 years ago
|
#errorOverlay {
|
||
|
background: var(--bgcolor-danger);
|
||
|
bottom: 0;
|
||
2 years ago
|
color: var(--color-danger);
|
||
2 years ago
|
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 {
|
||
2 years ago
|
background-color: var(--bgcolor-danger-input);
|
||
2 years ago
|
border: none;
|
||
2 years ago
|
color: var(--color-danger);
|
||
2 years ago
|
display: inline-block;
|
||
|
}
|
||
|
#errorOverlay button:focus {
|
||
|
outline: 2px solid white;
|
||
|
outline-offset: var(--focus-outline-offset);
|
||
|
}
|
||
|
|
||
|
#errorOverlay .buttons {
|
||
2 years ago
|
max-width: var(--content-width);
|
||
2 years ago
|
}
|
||
|
@media (orientation: portrait) {
|
||
|
#errorOverlay .buttons {
|
||
|
flex-basis: 4rem;
|
||
|
}
|
||
|
}
|