mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-23 21:09:52 +00:00
25 lines
425 B
SCSS
25 lines
425 B
SCSS
#toast-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px 0 50px;
|
|
|
|
.toast {
|
|
box-shadow: 0 1px 0 rgba(0,0,0,.25);
|
|
padding: 7px 12px;
|
|
background-image: none;
|
|
width: auto;
|
|
flex-basis: auto;
|
|
border-radius: 0.5rem;
|
|
font-size: 0.75rem;
|
|
|
|
&.toast-error {
|
|
background-color: #BD362F;
|
|
}
|
|
|
|
&.toast-info {
|
|
background-color: #555;
|
|
}
|
|
}
|
|
}
|