chores(doc): Update documentation (#2145)

* Update app architecture with typesense

* Update readme

* Added local search

* replace diagram

* Update search page
This commit is contained in:
Alex
2023-04-01 21:22:16 -05:00
committed by GitHub
parent b06ddec2d5
commit 8b001b87d2
16 changed files with 2167 additions and 69 deletions

View File

@@ -0,0 +1,33 @@
.search-icon {
background-image: var(--ifm-navbar-search-input-icon);
height: auto;
width: 24px;
cursor: pointer;
padding: 8px;
line-height: 32px;
background-repeat: no-repeat;
background-position: center;
display: none;
}
.search-icon-hidden {
visibility: hidden;
}
@media (max-width: 360px) {
.search-bar {
width: 0 !important;
background: none !important;
padding: 0 !important;
transition: none !important;
}
.search-bar-expanded {
width: 9rem !important;
}
.search-icon {
display: inline;
vertical-align: sub;
}
}