Skip to content

Commit 1ec0dd4

Browse files
committed
lint: fix css
1 parent c31f901 commit 1ec0dd4

1 file changed

Lines changed: 45 additions & 45 deletions

File tree

apps/web/src/app/globals.css

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,90 @@
11
@import "tailwindcss";
22

33
@theme inline {
4-
--font-main: var(--font-ibm-plex-sans-thai), var(--font-inter), sans-serif;
4+
--font-main: var(--font-ibm-plex-sans-thai), var(--font-inter), sans-serif;
55
}
66

77
/* Custom animations for Eventer components */
88
@keyframes fadeInScale {
9-
from {
10-
opacity: 0;
11-
transform: scale(0.92);
12-
}
13-
to {
14-
opacity: 1;
15-
transform: scale(1);
16-
}
9+
from {
10+
opacity: 0;
11+
transform: scale(0.92);
12+
}
13+
to {
14+
opacity: 1;
15+
transform: scale(1);
16+
}
1717
}
1818

1919
@keyframes scroll {
20-
0% {
21-
transform: translateX(0);
22-
}
23-
100% {
24-
transform: translateX(-50%);
25-
}
20+
0% {
21+
transform: translateX(0);
22+
}
23+
100% {
24+
transform: translateX(-50%);
25+
}
2626
}
2727

2828
.animate-fadeInScale {
29-
animation: fadeInScale 0.5s cubic-bezier(0.23, 1.01, 0.32, 1);
29+
animation: fadeInScale 0.5s cubic-bezier(0.23, 1.01, 0.32, 1);
3030
}
3131

3232
.animate-scroll {
33-
animation: scroll 24s linear infinite;
33+
animation: scroll 24s linear infinite;
3434
}
3535

3636
/* Custom utilities */
3737
.scale-120 {
38-
transform: scale(1.2);
38+
transform: scale(1.2);
3939
}
4040

4141
.gap-75 {
42-
gap: 18.75rem; /* 300px */
42+
gap: 18.75rem; /* 300px */
4343
}
4444

4545
.mb-15 {
46-
margin-bottom: 3.75rem; /* 60px */
46+
margin-bottom: 3.75rem; /* 60px */
4747
}
4848

4949
.h-25 {
50-
height: 6.25rem; /* 100px */
50+
height: 6.25rem; /* 100px */
5151
}
5252

5353
.gap-80 {
54-
gap: 20rem; /* 320px */
54+
gap: 20rem; /* 320px */
5555
}
5656

5757
/* Responsive overrides for custom utilities */
5858
@media (max-width: 768px) {
59-
.gap-75 {
60-
gap: 2rem; /* 32px on mobile */
61-
}
59+
.gap-75 {
60+
gap: 2rem; /* 32px on mobile */
61+
}
6262

63-
.gap-80 {
64-
gap: 2rem; /* 32px on mobile */
65-
}
63+
.gap-80 {
64+
gap: 2rem; /* 32px on mobile */
65+
}
6666

67-
.scale-120 {
68-
transform: scale(1); /* No scale on mobile */
69-
}
67+
.scale-120 {
68+
transform: scale(1); /* No scale on mobile */
69+
}
7070

71-
.h-25 {
72-
height: 4rem; /* 64px on mobile */
73-
}
71+
.h-25 {
72+
height: 4rem; /* 64px on mobile */
73+
}
7474

75-
.mb-15 {
76-
margin-bottom: 2rem; /* 32px on mobile */
77-
}
75+
.mb-15 {
76+
margin-bottom: 2rem; /* 32px on mobile */
77+
}
7878
}
7979

8080
/* Responsive design for scroll animation */
8181
@media (max-width: 600px) {
82-
.animate-scroll {
83-
gap: 1.5rem;
84-
}
85-
86-
.animate-scroll img {
87-
max-width: 5rem;
88-
height: 2.5rem;
89-
}
82+
.animate-scroll {
83+
gap: 1.5rem;
84+
}
85+
86+
.animate-scroll img {
87+
max-width: 5rem;
88+
height: 2.5rem;
89+
}
9090
}

0 commit comments

Comments
 (0)