🩹(react) update stylesheet to use modern SASS

Replaced deprecated '@import' with '@use' to align with best practices.
Refactored stylesheet to behave as a partial, enhancing SASS compilation
efficiency.
This commit is contained in:
Lebaud Antoine
2023-10-09 20:07:37 +02:00
committed by aleb_the_flash
parent 41a0b6f636
commit 430f893645
19 changed files with 27 additions and 36 deletions

View File

@@ -1,12 +0,0 @@
.offscreen {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
clip-path: inset(50%);
white-space: nowrap;
border: 0;
}

View File

@@ -1,4 +1,4 @@
@use 'src/utils';
@use 'src/utils' as *;
.c__date-picker {

View File

@@ -1,4 +1,4 @@
@use 'src/utils';
@use 'src/utils' as *;;
.c__select {
position: relative;

View File

@@ -1,4 +1,4 @@
@use 'src/utils';
@use 'src/utils' as *;
.c__popover {