umami/src/app/(main)/UpdateNotice.module.css

36 lines
631 B
CSS
Raw Normal View History

.notice {
2023-03-02 08:59:01 +01:00
position: absolute;
max-width: 800px;
gap: 20px;
2023-08-31 09:08:24 +02:00
margin: 80px auto;
align-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);
2023-08-31 09:08:24 +02:00
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}
.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;
}
}