16 lines
301 B
SCSS
16 lines
301 B
SCSS
.snackbar_content {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 2rem;
|
|
color: #fff;
|
|
&.is_success {
|
|
background-color: var(--success_bc_color);
|
|
}
|
|
&.is_error {
|
|
background-color: var(--error_bc_color);
|
|
}
|
|
}
|
|
|
|
.snackbar_message {
|
|
font-size: 1.4rem;
|
|
} |