Added error message when no articles found

This commit is contained in:
Brendan
2024-12-02 13:14:32 +00:00
parent 5f46363a05
commit 2ed962250c
2 changed files with 45 additions and 1 deletions

View File

@@ -29,4 +29,24 @@
.icon-small {
width: 10%; /* Set the width to 10% */
}
.message {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
padding: 10px 15px;
border-radius: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
max-width: 300px;
font-size: 14px;
}
.text-success {
color: #155724;
}
.text-danger {
color: #721c24;
}