1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 01:09:35 +05:30

(feat): implemented basic dynamic search results on flotingwindow

This commit is contained in:
2023-11-17 14:54:12 +05:30
parent f59368b400
commit b7e41b3003
2 changed files with 59 additions and 7 deletions

View File

@@ -522,8 +522,38 @@ video {
--tw-backdrop-sepia: ;
}
.static {
position: static;
.container {
width: 100%;
}
@media (min-width: 640px) {
.container {
max-width: 640px;
}
}
@media (min-width: 768px) {
.container {
max-width: 768px;
}
}
@media (min-width: 1024px) {
.container {
max-width: 1024px;
}
}
@media (min-width: 1280px) {
.container {
max-width: 1280px;
}
}
@media (min-width: 1536px) {
.container {
max-width: 1536px;
}
}
.fixed {
@@ -998,10 +1028,6 @@ video {
cursor: pointer;
}
.resize {
resize: both;
}
.flex-col {
flex-direction: column;
}