Blame view

components/thorui/fui-css/widget/position.scss 476 Bytes
46b6767c   刘淇   init 提交到库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*!
   * position v1.0.0 (https://doc.firstui.cn)
   * Copyright 2024 FirstUI.
   * Licensed under the Apache license
   */
  
  .fs-relative { position: relative }
  .fs-absolute { position: absolute }
  .fs-fixed { position: fixed }
  .fs-sticky { position: sticky }
  
  .fs-top-60 { top: -60rpx }
  .fs-top0 { top: 0 }
  .fs-right0 { right: 0 }
  .fs-bottom0 { bottom: 0 }
  .fs-left0 { left: 0 }
  .fs-bottom60 { bottom: 60rpx }
  
  /* z-index */
  @for $i from 1 through 9 {
  	.fs-z#{$i} { z-index: #{$i} }
  }