Files
2026-02-26 21:29:34 +01:00

36 lines
607 B
SCSS

.main-container{
display: flex;
justify-content: center;
background-color: rgb(218, 218, 218);
}
.app-container{
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: rgb(236, 236, 236);
box-shadow: 0px 0px 15px rgb(136, 136, 136) ;
min-height: 100dvh;
width:100%;
max-width: 450px;
overflow: hidden;
}
.up{
height: 100%;
position:relative;
border:#f0f 3px solid;
}
.app-scroll-view{
top: 0;
left: 0;
right: 0;
bottom: 0;
max-width: 450px;
overflow-y: auto;
-webkit-overflow-scrolling: touch; /* Fluidité pour iOS */
margin-inline:0.5em;
}