bigbuffet-rw/app/styles/components/snackbar.scss
2020-09-28 18:43:17 -05:00

42 lines
657 B
SCSS

.snackbar {
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: blue !important;
&::before {
content: '';
}
}
&--success {
background-color: #199e5a !important;
&::before {
content: '';
}
}
&--error {
background-color: red !important;
&::before {
content: '';
}
}
.notification-bar-wrapper {
transform: translateY(1px);
}
}