@c8y/style
Version:
Styles for Cumulocity IoT applications
28 lines (23 loc) • 585 B
text/less
.bottom-drawer {
position: fixed;
top: calc(@header-bar-height + 6px);
right: 10px;
bottom: 0;
z-index: @zindex-navbar-fixed;
overflow-y: auto;
width: calc(100vw - 20px);
background-color: @component-background-default;
transition: transform @open-menu-time-type, width @open-menu-time-type;
.translate(0, 100vh);
.drawerOpen & {
.translate(0, 0);
.boxShadowHelper(md, top);
}
@media (min-width: @grid-float-breakpoint) {
right: 24px;
width: calc(100vw - 48px);
.open & {
width: calc(100vw - @navigatorWidth - 48px);
}
}
}