29 lines
545 B
CSS
29 lines
545 B
CSS
.alert-message {
|
|
padding: 12px 16px;
|
|
margin: 12px 0;
|
|
border-radius: 6px;
|
|
border: 1px solid transparent;
|
|
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1.5;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
/* Rote Fehlermeldung */
|
|
.alert-message.is-error {
|
|
color: #ba1a1a;
|
|
background-color: #ffeede;
|
|
border-color: #ffb4ab;
|
|
}
|
|
|
|
/* Grüne Erfolgsmeldung */
|
|
.alert-message.is-success {
|
|
color: #006e2c;
|
|
background-color: #e8f5e9;
|
|
border-color: #b2dfdb;
|
|
} |