Fixes
This commit is contained in:
@@ -11,7 +11,7 @@ function toggleDark() { dark.value = !dark.value }
|
||||
<style lang="scss">
|
||||
:root {
|
||||
--bg: #ffffff;
|
||||
--surface: #f8fafc;
|
||||
--surface: #d0dae1;
|
||||
--border: #e2e8f0;
|
||||
--text: #0f172a;
|
||||
--text-muted: #64748b;
|
||||
|
||||
@@ -61,7 +61,7 @@ function dir(deg: number) {
|
||||
<div class="forecast-wrap">
|
||||
<div v-if="days?.length" class="strip">
|
||||
<div v-for="d in days" class="day">
|
||||
<div class="day-name">{{ formatDate('ddd, MMM D', new Date(d.time + 'T00:00:00')) }}</div>
|
||||
<div class="day-name">{{ formatDate('ddd, MMM D', d.time) }}</div>
|
||||
<img :src="BASE + d.icon" class="day-icon" :alt="(d.label?.toString() || '')" />
|
||||
<div class="day-label">{{ d.label }}</div>
|
||||
<div class="day-temps">
|
||||
|
||||
Reference in New Issue
Block a user