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

(refactor): changed spinner size of search results

This commit is contained in:
2023-12-06 00:52:59 +05:30
parent c344a16afa
commit aac0da0479
2 changed files with 9 additions and 1 deletions

View File

@@ -87,7 +87,7 @@
<!-- Search Results will be displayed here by JS --> <!-- Search Results will be displayed here by JS -->
</div> </div>
<div id="spinnercont" class="spinnercont w-full h-full absolute top-0 left-0 justify-center items-center bg-bg_secondary hidden"> <div id="spinnercont" class="spinnercont w-full h-full absolute top-0 left-0 justify-center items-center bg-bg_secondary hidden">
<div class="spinner border-[3px] border-accent_secondary_transparent border-t-[3px] border-t-accent_primary rounded-[50%] h-[30px] w-[30px] animate-spin"></div> <div class="spinner border-[4px] border-accent_secondary_transparent border-t-[4px] border-t-accent_primary rounded-[50%] h-[40px] w-[40px] animate-spin"></div>
</div> </div>
</div> </div>
<div id="sharewindow" class="sharewindow w-[90vw] md:w-[50vw] mx-auto py-6 fixed inset-x-0 bottom-[20vh] z-40 justify-between flex-col md:flex-row bg-bg_secondary rounded-xl hidden"> <div id="sharewindow" class="sharewindow w-[90vw] md:w-[50vw] mx-auto py-6 fixed inset-x-0 bottom-[20vh] z-40 justify-between flex-col md:flex-row bg-bg_secondary rounded-xl hidden">

View File

@@ -1175,6 +1175,10 @@ video {
border-width: 5px; border-width: 5px;
} }
.border-\[4px\] {
border-width: 4px;
}
.border-b-\[2px\] { .border-b-\[2px\] {
border-bottom-width: 2px; border-bottom-width: 2px;
} }
@@ -1195,6 +1199,10 @@ video {
border-top-width: 5px; border-top-width: 5px;
} }
.border-t-\[4px\] {
border-top-width: 4px;
}
.border-\[rgba\(255\2c _255\2c _255\2c _0\.15\)\] { .border-\[rgba\(255\2c _255\2c _255\2c _0\.15\)\] {
border-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.15);
} }