Skip to content

Commit 9af6486

Browse files
committed
lintify
1 parent ee757ec commit 9af6486

File tree

16 files changed

+85
-80
lines changed

16 files changed

+85
-80
lines changed

public/responses/survey-responses.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
"q4": "Less than 15 minutes",
2020
"q5": "Not sure",
2121
"q6": "No, I don’t think it has a big impact.",
22-
"q7": [
23-
"Interactive apps or websites"
24-
],
22+
"q7": ["Interactive apps or websites"],
2523
"q8": "Several times a week",
2624
"q9": ""
2725
}
28-
]
26+
]

src/assets/styles/blogs/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,4 +320,4 @@
320320
opacity: 1;
321321
transform: translateY(0);
322322
}
323-
}
323+
}

src/assets/styles/games.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,4 @@
254254
transform: rotate(90deg) scale(5);
255255
margin-top: 0;
256256
}
257-
}
257+
}

src/assets/styles/map/district.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
.view-button.active {
7070
background-color: #4a90e2;
71-
color:white;
71+
color: white;
7272
}
7373

7474
.district {

src/assets/styles/map/popup.css

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
.state-popup__close:hover {
106106
color: #1976d2;
107107
background-colo: white;
108-
}
108+
}
109109

110110
.state-popup__name {
111111
font-size: 2rem;
@@ -149,7 +149,7 @@
149149
padding: 0.8rem 0;
150150
font-size: 1.1rem;
151151
font-weight: 600;
152-
background:#1976d2;
152+
background: #1976d2;
153153
color: #fff;
154154
border: none;
155155
border-radius: 0.7rem;
@@ -163,7 +163,7 @@
163163
.state-popup {
164164
width: 80vw;
165165
padding: 1.5rem 1rem;
166-
166+
167167
&[popover] {
168168
min-height: 16rem;
169169

@@ -188,7 +188,7 @@
188188
.state-popup__info {
189189
font-size: 1rem;
190190
margin-bottom: -1rem;
191-
margin-right:0rem;
191+
margin-right: 0rem;
192192
margin-top: -1rem;
193193
margin-left: 0rem;
194194
}
@@ -210,13 +210,11 @@
210210

211211
.state-popup__close {
212212
font-size: 2rem;
213-
top:0.9rem;
213+
top: 0.9rem;
214214
right: 0rem;
215215
width: 2.5rem;
216216
height: 2.5rem;
217217
}
218218
}
219219
}
220220
}
221-
222-

src/assets/styles/map/state.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
transition: all 0.3s ease;
112112
}
113113

114-
.info-card:hover{
114+
.info-card:hover {
115115
background-color: #6da4ece7;
116116
transform: scale(1.02);
117117
border-color: var(--accent-color);
@@ -129,7 +129,6 @@
129129
font-size: 0.9rem;
130130
}
131131

132-
133132
.quick-facts {
134133
background: var(--card-bg);
135134
padding: 20px;

src/assets/styles/share-button.css

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@
8282
visibility: hidden;
8383
transform: scale(0.95);
8484
transform-origin: top right;
85-
transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.2s ease-out;
85+
transition:
86+
opacity 0.2s ease-out,
87+
visibility 0.2s ease-out,
88+
transform 0.2s ease-out;
8689
pointer-events: none;
8790
color: var(--text-color);
8891
}
@@ -110,7 +113,7 @@
110113
/* Social Share Section */
111114
.social-share-section {
112115
padding-top: 0px;
113-
border-bottom: 1px solid #eeeeee;
116+
border-bottom: 1px solid #eeeeee;
114117
margin-bottom: 20px;
115118
}
116119

@@ -146,11 +149,21 @@
146149
justify-content: center;
147150
}
148151

149-
.social-share-section .astro-social-share a[href*="whatsapp"] { order: 1; }
150-
.social-share-section .astro-social-share a[href*="x.com"] { order: 2; }
151-
.social-share-section .astro-social-share a[href*="facebook"] { order: 3; }
152-
.social-share-section .astro-social-share a[href*="linkedin"] { order: 4; }
153-
.social-share-section .astro-social-share a[href*="reddit"] { order: 5; }
152+
.social-share-section .astro-social-share a[href*="whatsapp"] {
153+
order: 1;
154+
}
155+
.social-share-section .astro-social-share a[href*="x.com"] {
156+
order: 2;
157+
}
158+
.social-share-section .astro-social-share a[href*="facebook"] {
159+
order: 3;
160+
}
161+
.social-share-section .astro-social-share a[href*="linkedin"] {
162+
order: 4;
163+
}
164+
.social-share-section .astro-social-share a[href*="reddit"] {
165+
order: 5;
166+
}
154167

155168
.social-share-section .astro-social-share svg {
156169
width: 30px;

src/assets/styles/stories/index.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@
140140
color: #ffffff;
141141
}
142142

143-
144143
:is(button, figcaption) {
145144
&[data-category="all"] {
146145
background-color: #6701cc;
@@ -482,4 +481,4 @@
482481
height: 350px;
483482
border-radius: 1rem 1rem 0 0;
484483
}
485-
}
484+
}

src/assets/styles/stories/stories.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
width: 18px;
370370
height: 18px;
371371
flex-shrink: 0;
372-
color: var(--primary)
372+
color: var(--primary);
373373
}
374374

375375
.category-badge {
@@ -409,7 +409,7 @@
409409
}
410410

411411
.story-content h2::after {
412-
content: '';
412+
content: "";
413413
position: absolute;
414414
bottom: 5px;
415415
left: 50%;
@@ -448,7 +448,7 @@
448448
}
449449

450450
.moral-section h2::after {
451-
content: '🌟';
451+
content: "🌟";
452452
position: absolute;
453453
bottom: -0.5rem;
454454
right: -1.5rem;
@@ -507,4 +507,4 @@
507507
width: 18px;
508508
height: 18px;
509509
}
510-
}
510+
}

src/assets/styles/survey.css

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@
107107
font-size: x-large;
108108
}
109109

110-
111110
.question::before {
112111
content: counter(question-counter) ".";
113112
color: var(--primary-light);
@@ -251,7 +250,6 @@
251250
min-height: 100px;
252251
transition: var(--transition);
253252
resize: none;
254-
255253
}
256254

257255
.textarea-input:focus {
@@ -545,7 +543,6 @@
545543
margin-bottom: 1rem;
546544
text-align: left;
547545

548-
549546
.question {
550547
font-size: 1.1rem;
551548
flex-wrap: wrap;
@@ -642,7 +639,6 @@
642639
text-align: left;
643640
}
644641

645-
646642
.option-label {
647643
font-size: 0.8rem;
648644
padding: 0.5rem 0.75rem;
@@ -672,4 +668,4 @@
672668
overflow-y: auto;
673669
min-height: 1500px;
674670
}
675-
}
671+
}

0 commit comments

Comments
 (0)