soapbox/app/styles/components/snackbar.scss

43 wiersze
658 B
SCSS
Czysty Zwykły widok Historia

2020-09-22 03:56:15 +00:00
.snackbar {
2020-09-28 23:41:35 +00:00
font-size: 16px !important;
padding: 10px 20px 10px 14px !important;
z-index: 9999 !important;
display: flex;
align-items: center;
justify-content: center;
&::before {
font-family: ForkAwesome;
font-size: 20px;
margin-right: 8px;
}
&--info {
background-color: #19759e !important;
2020-09-28 23:41:35 +00:00
&::before {
content: '';
2020-09-28 23:41:35 +00:00
}
}
2020-09-22 03:56:15 +00:00
&--success {
2020-09-28 23:41:35 +00:00
background-color: #199e5a !important;
&::before {
content: '';
2020-09-28 23:41:35 +00:00
}
}
&--error {
background-color: #9e1919 !important;
2020-09-28 23:41:35 +00:00
&::before {
content: '';
2020-09-28 23:41:35 +00:00
}
}
.notification-bar-wrapper {
transform: translateY(1px);
2020-09-22 03:56:15 +00:00
}
}