mirror of
https://github.com/Eugeny/tabby
synced 2025-01-19 00:24:18 +00:00
1e5cfd1d4b
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
28 lines
546 B
SCSS
28 lines
546 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;
|
|
display: block !important;
|
|
border: none !important;
|
|
width: auto;
|
|
flex-basis: auto;
|
|
border-radius: 0.5rem;
|
|
font-size: 0.75rem;
|
|
|
|
&.toast-error {
|
|
background-color: #BD362F;
|
|
color: white !important;
|
|
}
|
|
|
|
&.toast-info {
|
|
background-color: #555;
|
|
color: #eee !important;
|
|
}
|
|
}
|
|
}
|