added MoreSection component to profile page

This commit is contained in:
Hunter W.
2026-06-04 01:54:38 -04:00
parent 39a056db25
commit 0b161f3e2d
9 changed files with 317 additions and 61 deletions

View File

@@ -105,7 +105,7 @@
--accent-hover: #9dacff;
--accent-strong: #7088ff;
--accent-bg: rgba(138, 157, 255, 0.08);
--accent-bg-hover: rgba(138, 157, 255, 0.14);
--accent-bg-hover: rgba(249, 250, 255, 0.554);
/* Semantic */
--success: #5ec98f;
@@ -159,3 +159,15 @@ body {
}
}
@keyframes wiggle {
0%, 100% { transform: rotate(0deg); }
15% { transform: rotate(-1deg); }
30% { transform: rotate(1deg); }
45% { transform: rotate(-1deg); }
60% { transform: rotate(1deg); }
75% { transform: rotate(-1deg); }
}
.wiggle {
animation: wiggle 0.4s ease-in-out infinite;
}