webapp/src/components/Nav/Snackbar.module.scss
Ilya Y 2ef8da6da5
Feature/85 side panel (#104)
* Add shortcuts list to the side panel

* Night mode style
2023-05-29 07:40:17 +03:00

25 lines
379 B
SCSS

.snackbar {
min-height: 2px;
background-color: var(--default-color);
color: #fff;
transition: background-color 0.3s;
&.error {
background-color: #d00820;
}
}
.content {
transition: height 0.3s, color 0.3s;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
&.enter,
&.exitTo {
height: 0;
color: transparent;
}
}