umami/src/components/common/UpdateNotice.module.css

35 lines
587 B
CSS
Raw Normal View History

.notice {
2023-03-02 08:59:01 +01:00
position: absolute;
max-width: 800px;
gap: 20px;
margin: 20px auto;
justify-self: center;
2023-07-27 23:47:41 +02:00
background: var(--base50);
2023-03-02 08:59:01 +01:00
padding: 20px;
border: 1px solid var(--base300);
border-radius: var(--border-radius);
z-index: var(--z-index-popup);
}
.message {
2023-03-02 08:59:01 +01:00
display: flex;
justify-content: center;
align-items: center;
2023-07-27 23:47:41 +02:00
color: var(--font-color100);
font-weight: 700;
}
2022-03-03 23:23:57 +01:00
.buttons {
2023-03-02 08:59:01 +01:00
display: flex;
flex-direction: row;
justify-content: flex-end;
gap: 10px;
2022-03-03 23:23:57 +01:00
flex: 0;
}
2023-03-02 08:59:01 +01:00
@media only screen and (max-width: 992px) {
.message {
height: 80px;
}
}