Skip to content

Commit 645285b

Browse files
committed
fix: add generic font fallback and replace Math.random with crypto-based ID generator
1 parent ff4d2b2 commit 645285b

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

src/components/CommunityPortal/Activities/activityId/EventPageOrganizer/EventPageOrganizer.module.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
}
6262

6363
.statusText {
64-
font-family: 'Inter', Helvetica;
64+
font-family: 'Inter', Helvetica, sans-serif;
6565
font-weight: 500;
6666
color: black;
6767
font-size: 2rem;
@@ -82,15 +82,15 @@
8282
}
8383

8484
.eventType {
85-
font-family: 'Inter', Helvetica;
85+
font-family: 'Inter', Helvetica, sans-serif;
8686
font-weight: 400;
8787
color: black;
8888
font-size: 1rem;
8989
line-height: normal;
9090
}
9191

9292
.eventTitle {
93-
font-family: 'Inter', Helvetica;
93+
font-family: 'Inter', Helvetica, sans-serif;
9494
font-weight: 600;
9595
color: black;
9696
font-size: 39.7px;
@@ -110,15 +110,15 @@
110110
}
111111

112112
.linkLabel {
113-
font-family: 'Inter', Helvetica;
113+
font-family: 'Inter', Helvetica, sans-serif;
114114
font-weight: 400;
115115
color: black;
116116
font-size: 15.9px;
117117
line-height: normal;
118118
}
119119

120120
.linkValue {
121-
font-family: 'Inter', Helvetica;
121+
font-family: 'Inter', Helvetica, sans-serif;
122122
font-weight: 400;
123123
color: #008dff;
124124
font-size: 15.9px;
@@ -150,23 +150,23 @@
150150
}
151151

152152
.detailLabelText {
153-
font-family: 'Inter', Helvetica;
153+
font-family: 'Inter', Helvetica, sans-serif;
154154
font-weight: 400;
155155
color: black;
156156
font-size: 1rem;
157157
line-height: 1.5rem;
158158
}
159159

160160
.detailValue {
161-
font-family: 'Inter', Helvetica;
161+
font-family: 'Inter', Helvetica, sans-serif;
162162
font-weight: 600;
163163
color: black;
164164
font-size: 1rem;
165165
line-height: 1.5rem;
166166
}
167167

168168
.capacityValue {
169-
font-family: 'Inter', Helvetica;
169+
font-family: 'Inter', Helvetica, sans-serif;
170170
font-weight: 600;
171171
font-size: 1rem;
172172
line-height: 1.5rem;
@@ -212,7 +212,7 @@
212212
}
213213

214214
.moreCountText {
215-
font-family: 'Inter', Helvetica;
215+
font-family: 'Inter', Helvetica, sans-serif;
216216
font-weight: 400;
217217
color: black;
218218
font-size: 10px;

src/components/CommunityPortal/Activities/activityId/EventPageOrganizer/sections/DescriptionSection/DescriptionSection.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
resize: none;
2323
background-color: transparent;
2424
border: none;
25-
font-family: 'Manrope', Helvetica;
25+
font-family: 'Manrope', Helvetica, sans-serif;
2626
font-weight: 600;
2727
color: #4b5563;
2828
font-size: 1.5rem;

src/components/CommunityPortal/Activities/activityId/EventPageOrganizer/sections/EventStatusSection/EventStatusSection.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010

1111
.logo {
12-
font-family: 'Inter', Helvetica;
12+
font-family: 'Inter', Helvetica, sans-serif;
1313
font-weight: 700;
1414
color: white;
1515
font-size: 0.875rem;
@@ -44,7 +44,7 @@
4444
}
4545

4646
.welcomeText {
47-
font-family: 'Inter', Helvetica;
47+
font-family: 'Inter', Helvetica, sans-serif;
4848
font-weight: 400;
4949
color: white;
5050
font-size: 0.875rem;

src/components/CommunityPortal/Activities/activityId/EventPageOrganizer/sections/ScheduleSection/ScheduleSection.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515

1616
.monthTitle {
17-
font-family: 'Inter', Helvetica;
17+
font-family: 'Inter', Helvetica, sans-serif;
1818
font-weight: 600;
1919
color: black;
2020
font-size: 0.875rem;
@@ -35,7 +35,7 @@
3535
}
3636

3737
.weekDay {
38-
font-family: 'Inter', Helvetica;
38+
font-family: 'Inter', Helvetica, sans-serif;
3939
font-weight: 400;
4040
color: black;
4141
font-size: 0.875rem;
@@ -66,7 +66,7 @@
6666
}
6767

6868
.dateNumber {
69-
font-family: 'Inter', Helvetica;
69+
font-family: 'Inter', Helvetica, sans-serif;
7070
font-weight: 400;
7171
font-size: 0.875rem;
7272
line-height: normal;

0 commit comments

Comments
 (0)