openreplay/frontend/app/styles/toastify.css
2021-05-01 15:12:01 +05:30

33 lines
No EOL
761 B
CSS

.Toastify__close-button {
text-indent: -1000em;
content: '';
width: 15px;
height: 15px;
display: block;
background-image: svg-load(icons/close.svg, fill=gray-medium) !important;
background-repeat: no-repeat !important;
background-size: contain !important;
background-position: center center !important;
}
.Toastify__toast {
background-color: white !important;
color: $gray-medium;
border-left: solid 5px transparent;
&.Toastify__toast--default {
border-color: $teal;
}
&.Toastify__toast--info {
border-color: $yellow;
}
&.Toastify__toast--success {
border-color: $teal;
}
&.Toastify__toast--warning {
background: $orange;
}
&.Toastify__toast--error {
background: $red;
border-color: $red;
}
}