Blame view

components/thorui/fui-css/widget/border.scss 586 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
23
24
25
26
27
28
29
30
31
32
  /*!
   * border v1.0.0 (https://doc.firstui.cn)
   * Copyright 2024 FirstUI.
   * Licensed under the Apache license
   */
  
  .fs-border {
    border-style: solid;
    border-width: $fv-border-width;
  }
  
  .fs-border__none { border-width: 0 }
  
  .fs-border__top {
    border-top-style: solid;
    border-top-width: $fv-border-width;
  }
  
  .fs-border__right {
    border-right-style: solid;
    border-right-width: $fv-border-width;
  }
  
  .fs-border__bottom {
    border-bottom-style: solid;
    border-bottom-width: $fv-border-width;
  }
  
  .fs-border__left {
    border-left-style: solid;
    border-left-width: $fv-border-width;
  }