refactor: Update version to 1.1.12, fix selectedModel spacing, and update meta viewport tags

This commit is contained in:
n4ze3m
2024-06-08 23:58:40 +05:30
parent 4a5713d6e4
commit 68bd3e651b
9 changed files with 374 additions and 66 deletions

View File

@@ -25,46 +25,6 @@
box-shadow: none !important;
}
.gradient-border {
--borderWidth: 3px;
position: relative;
border-radius: var(--borderWidth);
}
.gradient-border:after {
content: "";
position: absolute;
top: calc(-1 * var(--borderWidth));
left: calc(-1 * var(--borderWidth));
height: calc(100% + var(--borderWidth) * 2);
width: calc(100% + var(--borderWidth) * 2);
background: linear-gradient(
60deg,
#f79533,
#f37055,
#ef4e7b,
#a166ab,
#5073b8,
#1098ad,
#07b39b,
#6fba82
);
border-radius: calc(2 * var(--borderWidth));
z-index: -1;
animation: animatedgradient 3s ease alternate infinite;
background-size: 300% 300%;
}
@keyframes animatedgradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
@@ -75,3 +35,37 @@
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
@keyframes gradient-border {
0% {
border-image-source: linear-gradient(
45deg,
#f79533,
#f37055,
#ef4e7b,
#a166ab
);
}
50% {
border-image-source: linear-gradient(45deg, #ef4e7b, #a166ab);
}
74% {
border-image-source: linear-gradient(60deg, #5073b8, #1098ad);
}
100% {
border-image-source: linear-gradient(
45deg,
#f79533,
#f37055,
#ef4e7b,
#a166ab
);
}
}
.animated-gradient-border {
border: 4px solid;
border-image-slice: 1;
animation: gradient-border 3s infinite;
border-radius: 10px;
}