Files
deck/css/comp-13.scss
Julius Härtl 0dd70fb461 Move app sidebar handling to angular/css
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-07-28 13:10:41 +02:00

41 lines
569 B
SCSS

#content-wrapper #content {
height: 100%;
}
#app-content {
flex-grow: 1;
height: 100%;
}
#app-sidebar {
right: -500px;
max-width: 100%;
width: 500px;
display:flex;
flex-direction: column;
&.details-visible {
right: 0;
}
}
#app-content {
&.details-visible {
margin-right: 500px;
}
}
#content[class*='app-'] * {
box-sizing: border-box;
}
body:not(.snapjs-left) {
.app-navigation-hide {
#app-content {
margin-left: 0 !important; /* overwrite margin since we want the translateX to handle it*/
}
#app-navigation {
display: none;
}
}
}