mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-11 08:43:04 +00:00
41 lines
816 B
SCSS
41 lines
816 B
SCSS
@import "../../styles/colors.scss";
|
|
|
|
.info-msg {
|
|
height: fit-content;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-style: italic;
|
|
font-size: 0.9em;
|
|
color: $dark-blue;
|
|
background-color: $light-blue;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
animation: fadein 250ms both;
|
|
}
|
|
|
|
.error-msg {
|
|
height: fit-content;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-style: italic;
|
|
font-size: 0.9em;
|
|
color: $red;
|
|
background-color: $light-red;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
animation: fadein 250ms both;
|
|
}
|
|
|
|
.success-msg {
|
|
height: fit-content;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-style: italic;
|
|
font-size: 0.9em;
|
|
color: $green;
|
|
background-color: $light-green;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
animation: fadein 250ms both;
|
|
}
|