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

37 lines
537 B
SCSS
Raw Normal View History

2023-02-09 22:39:52 +00:00
.snackbar {
background-color: var(--default-color);
2023-02-10 01:19:20 +00:00
color: #fff;
2023-11-13 14:43:08 +00:00
font-size: 2rem;
font-weight: 500;
2023-02-09 22:39:52 +00:00
transition: background-color 0.3s;
&.error {
background-color: #d00820;
}
2023-11-13 14:43:08 +00:00
&.success {
.icon {
height: 1.8em;
margin-right: 0.5em;
margin-top: 0.1em;
width: 1.8em;
}
}
2023-02-09 22:39:52 +00:00
}
2023-02-10 01:19:20 +00:00
2023-02-09 22:39:52 +00:00
.content {
2023-11-13 14:43:08 +00:00
transition:
height 0.3s,
color 0.3s;
2023-02-09 22:39:52 +00:00
height: 60px;
display: flex;
align-items: center;
justify-content: center;
&.enter,
&.exitTo {
height: 0;
color: transparent;
}
}