Add GIPHY image search feature

This commit is contained in:
GHStaK
2026-03-24 16:02:49 +09:00
parent 494a54fa46
commit d63c467ef9
13 changed files with 1385 additions and 84 deletions
+19
View File
@@ -46,6 +46,25 @@ body {
background: rgba(255, 255, 255, 0.08);
}
#searchResultsViewport {
min-height: 12rem;
}
#searchResultsViewport.image-results-scroll {
height: min(62dvh, 58rem);
overflow-y: auto;
padding-right: 0.35rem;
}
#searchResultsViewport.image-results-scroll::-webkit-scrollbar {
width: 10px;
}
#searchResultsViewport.image-results-scroll::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.16);
border-radius: 9999px;
}
.dual-slider__thumb {
touch-action: none;
cursor: ew-resize;