mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
20 lines
295 B
CSS
20 lines
295 B
CSS
.error {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
z-index: var(--z-index-overlay);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 600px;
|
|
gap: 20px;
|
|
}
|
|
|
|
.error button {
|
|
align-self: center;
|
|
}
|