Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/monitor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const Monitor = () => {
<img
src={monitorImage}
alt=""
className="relative z-30 hidden w-full md:absolute md:-top-24 md:right-12 md:block md:h-auto md:w-auto"
className="relative z-30 hidden w-full md:absolute md:-top-24 md:right-12 md:block md:h-auto md:w-auto md:animate-float"
/>
</>
);
Expand Down
5 changes: 4 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import 'tailwindcss';

/* stylelint-disable-next-line */
@theme {
--font-montserrat: 'Montserrat', sans-serif;

Expand All @@ -15,6 +16,8 @@
--color-aidevs-white: #F6F6FF;

--color-accent: #EE196E;

--animate-float: float 3s ease-in-out infinite;
}

html,
Expand All @@ -27,7 +30,7 @@ body {
background-color: var(--color-black);
}

/* Floating animation for charity badge */
/* Floating animation for monitor and charity badge */
@keyframes float {
0%, 100% {
transform: translateY(0px);
Expand Down