1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 06:59:34 +05:30

(refactor): hidden scrollbar of search window (feat): implemented basic search results items design

This commit is contained in:
2023-11-10 22:05:03 +05:30
parent eb53c0efe5
commit 3162654d1d
3 changed files with 68 additions and 3 deletions

View File

@@ -1,3 +1,14 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;
@layer utilities {
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
}