mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-16 09:04:45 +01:00
25 lines
357 B
CSS
25 lines
357 B
CSS
.Notification {
|
|
position: absolute;
|
|
|
|
/* Default styles, changed when showing notif */
|
|
top: -100%;
|
|
right: 10%;
|
|
|
|
padding: 20px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ffc61e;
|
|
|
|
background-color: #fff;
|
|
color: #000;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.NotifShow {
|
|
top: 10%;
|
|
}
|