You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

absolutelayout.scss 508B

12345678910111213141516171819
  1. @mixin base-absolutelayout($primaryStyleName : v-absolutelayout) {
  2. .#{$primaryStyleName}-wrapper {
  3. position: absolute;
  4. overflow: hidden;
  5. }
  6. .#{$primaryStyleName}-margin, .#{$primaryStyleName}-canvas {
  7. -webkit-box-sizing: border-box;
  8. -moz-box-sizing: border-box;
  9. box-sizing: border-box;
  10. }
  11. .#{$primaryStyleName}.v-has-height > div, .#{$primaryStyleName}.v-has-height > div > div {
  12. height: 100%;
  13. }
  14. .#{$primaryStyleName}.v-has-width > div, .#{$primaryStyleName}.v-has-width > div > div {
  15. width: 100%;
  16. }
  17. }