租房小程序前端代码
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.

28 lines
308 B

3 months ago
  1. @mixin pos {
  2. left: 0;
  3. right: 0;
  4. top: 0;
  5. bottom: 0;
  6. }
  7. .se {
  8. &-full {
  9. width: 100%;
  10. height: 100%;
  11. &-vw {
  12. width: 100vw;
  13. height: 100vh;
  14. }
  15. &-fixed {
  16. @include pos;
  17. position: fixed;
  18. }
  19. &-abs {
  20. @include pos;
  21. position: absolute;
  22. }
  23. }
  24. }