lostplaces-frontend/components/05_Pages/_pages.scss

23 lines
435 B
SCSS
Raw Normal View History

2020-08-04 23:47:51 +02:00
$-sidebar-width: 250px;
.LP-Main{
2020-08-05 18:38:17 +02:00
display: table;
2020-08-04 23:47:51 +02:00
flex-direction: row-reverse;
height: calc(100% - 61px);
.LP-Main__Content{
2020-08-05 18:38:17 +02:00
display: table-cell;
2020-08-04 23:47:51 +02:00
width: calc(100% -300px);
min-height: 1px;
2020-08-05 18:38:17 +02:00
padding: 25px;
2020-08-04 23:47:51 +02:00
}
2020-08-05 13:19:00 +02:00
.LP-Main__Sidebar{
2020-08-05 18:38:17 +02:00
display: table-cell;
2020-08-04 23:47:51 +02:00
width: $-sidebar-width;
flex-grow: 0;
height: 100%;
}
}
@import 'placeDetail/placeDetail';