20 lines
420 B
SCSS
20 lines
420 B
SCSS
@use "../core/variables" as *;
|
|
|
|
// =============================================================
|
|
// Layout picker — pages embarquées (ex: sélecteur de médias)
|
|
// =============================================================
|
|
|
|
body.picker-layout {
|
|
margin: 0;
|
|
background: $color-bg-light;
|
|
}
|
|
|
|
.picker-layout {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.picker-layout__inner {
|
|
padding: $spacing-md;
|
|
padding-bottom: 0;
|
|
}
|