feat(search): add basic search functionality

this commit adds basic search feature.

fix: https://codeberg.org/zyachel/libremdb/issues/9, https://github.com/zyachel/libremdb/issues/10
This commit is contained in:
zyachel
2022-12-31 22:21:36 +05:30
parent 81eaf2fd5e
commit 0cff34a766
25 changed files with 1191 additions and 60 deletions

View File

@ -1,7 +1,7 @@
@use '../../abstracts' as helper;
.header {
--dimension: 1.5em; // will be used for icons
--dimension: 1.6em; // will be used for icons
font-size: 1.1em;
@ -67,9 +67,20 @@
}
}
.themeToggler {
.misc {
justify-self: end;
grid-column: -2 / -1;
display: flex;
align-items: center;
gap: var(--spacer-2);
position: relative;
svg {
height: var(--dimension);
width: var(--dimension);
fill: var(--clr-fill);
}
}
.hero {