clonegur/frontend/src/app/message/message.component.scss

31 lines
467 B
SCSS

.container {
padding: .5rem 1rem;
margin: .5rem;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-right-width: 3px;
border-right-style: solid;
display: flex;
flex-direction: row;
align-items: center;
gap: 1rem;
width: 20rem;
}
.error {
border-right-color: red;
}
.warn {
border-right-color: orange;
}
.success {
border-right-color: green;
}
.info {
border-right-color: lightskyblue;
}