💄 Replace css files with scss and factorize CSS rules

This commit is contained in:
2023-03-05 12:49:20 +01:00
parent a9d918fb0f
commit f09ba4cc58
15 changed files with 459 additions and 184 deletions

23
frontend/src/App.scss Normal file
View File

@@ -0,0 +1,23 @@
.App {
--idfm-black: #2c2e35;
--idfm-white: #ffffff;
height: inherit;
width: inherit;
scroll-snap-type: x mandatory;
overflow-x: scroll;
display: flex;
text-align: center;
.panel {
min-width: 100%;
height: inherit;
width: inherit;
scroll-snap-align: center;
background-color: var(--idfm-black);
}
}