2020-09-30 01:25:44 +02:00
|
|
|
.notice {
|
2023-03-02 08:59:01 +01:00
|
|
|
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);
|
2023-04-01 05:03:28 +02:00
|
|
|
z-index: var(--z-index-popup);
|
2020-09-26 13:03:13 +02:00
|
|
|
}
|
2020-09-30 01:25:44 +02:00
|
|
|
|
|
|
|
.message {
|
2023-03-02 08:59:01 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-03-03 23:23:57 +01:00
|
|
|
font-weight: 600;
|
2020-09-26 13:03:13 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|