Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Début d'un mode sombre pour france.ts #797

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
6 changes: 4 additions & 2 deletions app/UI.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import closeIcon from '@/public/close-circle-stroke.svg'
import Image from 'next/image'
import { styled, css } from 'next-yak'
import { oceanColor } from './styles/france'
import { colors } from './styles/france'

const oceanColor = colors.light.ocean

export const MapContainer = styled.div`
${(p) =>
!p.$isMapLoaded
? css`
background: ${oceanColor};
background: #71a0e9;
`
: css`
background: black;
Expand Down
Loading