2022-09-13 13:14:49 +00:00
|
|
|
.messagebox {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--background-colour-translucent-8);
|
|
|
|
z-index: 9000;
|
|
|
|
}
|
|
|
|
.messagebox__container {
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
.messagebox__buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 5px;
|
2024-01-30 23:47:02 +00:00
|
|
|
gap: 5px;
|
2022-09-13 13:14:49 +00:00
|
|
|
}
|