From 36eedc61c0f9ea8fb2322eb618b3cdd07e013cf8 Mon Sep 17 00:00:00 2001 From: Lebaud Antoine Date: Mon, 9 Oct 2023 20:09:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(demo)=20update=20stylesheet=20to?= =?UTF-8?q?=20use=20modern=20SASS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced deprecated '@import' with '@use' to align with best practices. --- apps/demo/src/index.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/demo/src/index.scss b/apps/demo/src/index.scss index 0bd039a..8a7e3c9 100644 --- a/apps/demo/src/index.scss +++ b/apps/demo/src/index.scss @@ -1,7 +1,7 @@ -@import "@openfun/cunningham-react/sass/fonts"; -@import "@openfun/cunningham-react/sass/icons"; -@import "@openfun/cunningham-react/style"; -@import "cunningham-tokens"; +@use "@openfun/cunningham-react/sass/fonts"; +@use "@openfun/cunningham-react/sass/icons"; +@use "@openfun/cunningham-react/style"; +@use "cunningham-tokens"; :root { font-family: Roboto, sans-serif;