style.scss 191 B

1234567891011121314151617181920
  1. html,
  2. body,
  3. #app {
  4. margin: 0;
  5. width : 100vw;
  6. height: 100vh;
  7. }
  8. * {
  9. box-sizing: border-box;
  10. }
  11. #app {
  12. overflow-y: auto;
  13. }
  14. .disable {
  15. opacity : 0.7;
  16. pointer-events: none;
  17. }