23 lines
435 B
SCSS
23 lines
435 B
SCSS
$-sidebar-width: 250px;
|
|
|
|
.LP-Main{
|
|
display: table;
|
|
flex-direction: row-reverse;
|
|
height: calc(100% - 61px);
|
|
|
|
.LP-Main__Content{
|
|
display: table-cell;
|
|
width: calc(100% -300px);
|
|
min-height: 1px;
|
|
padding: 25px;
|
|
}
|
|
|
|
.LP-Main__Sidebar{
|
|
display: table-cell;
|
|
width: $-sidebar-width;
|
|
flex-grow: 0;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
@import 'placeDetail/placeDetail'; |