2020-09-01 00:57:59 +02:00
|
|
|
.toast {
|
2022-03-03 00:23:47 +01:00
|
|
|
position: fixed;
|
2020-09-01 00:57:59 +02:00
|
|
|
top: 30px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 300px;
|
|
|
|
border-radius: 5px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 16px;
|
2020-09-20 10:33:39 +02:00
|
|
|
color: var(--msgColor);
|
2020-09-01 00:57:59 +02:00
|
|
|
background: var(--green400);
|
|
|
|
margin: auto;
|
|
|
|
z-index: 2;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message {
|
2022-12-09 08:43:43 +01:00
|
|
|
font-size: var(--font-size-md);
|
2020-09-01 00:57:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|