vuestic-ui
Version:
Vue 3 UI Framework
30 lines • 652 B
CSS
.va-layout-fixed-wrapper {
position: relative;
flex: 1;
}
.va-layout-fixed-wrapper__content {
position: fixed;
width: var(--va-styles-width);
height: var(--va-styles-height);
}
@media print {
.va-layout-fixed-wrapper__content {
position: relative ;
height: -moz-max-content ;
height: max-content ;
width: -moz-max-content ;
width: max-content ;
}
}
.va-layout-fixed-wrapper__content--top {
top: 0;
}
.va-layout-fixed-wrapper__content--bottom {
bottom: 0;
}
.va-layout-fixed-wrapper__content--right {
right: 0;
}
.va-layout-fixed-wrapper__content--left {
left: 0;
}