Skip to content

Commit b4cbd45

Browse files
committed
explore styling
1 parent cf2679b commit b4cbd45

File tree

4 files changed

+324
-10
lines changed

4 files changed

+324
-10
lines changed

pages/explore/+Page.client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ function FeatureDetails({setInspectPosition}) {
381381
}
382382
}, [bounds]);
383383

384-
if (result == null) return h(Spinner);
384+
if (result == null) return h(Spinner, { className: "loading-spinner" });
385385
result = result.success.data;
386386

387387
checkins = createCheckins(result, mapRef, setInspectPosition);

pages/explore/main.sass

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,9 @@ body
319319
.red-cross
320320
cursor: pointer
321321

322+
.loading-spinner
323+
margin-top: 50px
324+
322325

323326
.autocomplete-wrapper
324327
background-color: var(--panel-background-color)

pages/main.module.sass

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -230,34 +230,28 @@ body
230230
display: flex
231231
justify-content: center
232232

233+
svg
234+
filter: var(--anti-img-color)
235+
233236
.likes-container
234237
display: grid
235238
grid-template-columns: 50% 50%
236239
width: 25%
237240
justify-content: end
238241
place-items: center
239242

240-
.likes-image
241-
width: 40px
242-
243243
.comments-container
244244
display: grid
245245
grid-template-columns: 50% 50%
246246
width: 25%
247247
place-items: center
248248

249-
.comments-image
250-
width: 40px
251-
252249
.observations-container
253250
display: grid
254251
grid-template-columns: 50% 50%
255252
width: 25%
256253
place-items: center
257254

258-
.observations-image
259-
width: 40px
260-
261255
.marker
262256
height: 7vh
263257
display: grid

vite.config.ts.timestamp-1745790648712-50c2498425b6f.mjs

Lines changed: 317 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)