sw-fe/src/styles/layout.css

24 lines
378 B
CSS

/* ========== LAYOUT GLOBAL (structure) ========== */
.app-root {
height: 100vh;
display: flex;
flex-direction: column;
}
.main-shell {
flex: 1;
display: flex;
padding: 0.6rem;
}
/* Conteneur de la carte plein écran */
.map-shell {
position: relative;
flex: 1;
border-radius: 1rem;
overflow: hidden;
border: 1px solid #1f2937;
background: #020617;
}