28 lines
458 B
SCSS
28 lines
458 B
SCSS
.App {
|
|
--idfm-black: #2c2e35;
|
|
--idfm-white: #ffffff;
|
|
|
|
--neutral-color: #d7dbdf;
|
|
|
|
--border-radius: calc(15/1920*100%);
|
|
|
|
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);
|
|
}
|
|
}
|