mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
34 lines
531 B
CSS
34 lines
531 B
CSS
.notice {
|
|
position: absolute;
|
|
max-width: 800px;
|
|
gap: 20px;
|
|
margin: 20px auto;
|
|
justify-self: center;
|
|
background: #fff;
|
|
padding: 20px;
|
|
border: 1px solid var(--base300);
|
|
border-radius: var(--border-radius);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.message {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
flex: 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
.message {
|
|
height: 80px;
|
|
}
|
|
}
|