Files
my-links/components/MessageManager/message-manager.module.scss
Sonny 45f5455f94 feat/fix/chore: refactor project structure + add favicon
- Changement de structure de fichier
- Ajout des favicons des sites
- Suppression et mise à jour de dépendances
- Ajout React-Icons pour gérer les icons
- Amélioration du l'UI
2023-04-20 18:18:03 +02:00

39 lines
770 B
SCSS

.info-msg {
height: fit-content;
width: 100%;
text-align: center;
font-style: italic;
font-size: 0.9em;
color: #005aa5;
background-color: #d3e8fa;
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: #d8000c;
background-color: #ffbabab9;
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: #c1ffbab9;
padding: 10px;
border-radius: 3px;
animation: fadein 250ms both;
}