feat: add images, error_box & new message when no results are provided (#185)

This commit is contained in:
neon_arch 2023-08-10 04:32:47 +03:00
parent 9fd8275b17
commit c4935f202a
8 changed files with 67 additions and 4 deletions

View file

@ -0,0 +1,3 @@
function toggleErrorBox() {
}

View file

@ -70,6 +70,27 @@ body {
filter: brightness(1.2);
}
.result_not_found {
display: flex;
flex-direction: column;
font-size: 1.5rem;
color: var(--foreground-color);
}
.result_not_found p {
margin: 1rem 0;
}
.result_not_found ul {
margin: 1rem 0;
}
.result_not_found img {
width: 40rem;
}
/* styles for the footer and header */
header {