webapp/src/components/Nav/Snackbar.module.scss

25 lines
379 B
SCSS
Raw Normal View History

2023-02-09 22:39:52 +00:00
.snackbar {
2023-05-24 21:51:47 +00:00
min-height: 2px;
background-color: var(--default-color);
2023-02-10 01:19:20 +00:00
color: #fff;
2023-02-09 22:39:52 +00:00
transition: background-color 0.3s;
&.error {
background-color: #d00820;
}
}
2023-02-10 01:19:20 +00:00
2023-02-09 22:39:52 +00:00
.content {
transition: height 0.3s, color 0.3s;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
&.enter,
&.exitTo {
height: 0;
color: transparent;
}
}