Skip to content

Commit

Permalink
chore(candidate): add comments explaining CSS import order
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasDos committed Feb 28, 2025
1 parent 6dbc55f commit 2243db1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/reva-candidate/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"use client";

// CSS imports order is important for proper styling - DO NOT MODIFY THE ORDER
// 1. Global styles must be loaded first as they provide base styling
import "@/styles/globals.css";

// 2. DSFR theme styles provide the core design system components
import "@/styles/dsfr-theme-tac.min.css";

// 3. Extra theme styles provide additional customizations on top of the core theme
import "@/styles/dsfr-theme-tac-extra.css";

import { SkipLinks } from "@codegouvfr/react-dsfr/SkipLinks";
Expand Down

0 comments on commit 2243db1

Please sign in to comment.