Blame view

local/templates/vekprom/scss/_mixins.scss 485 Bytes
2fe1e5ce8   Андрей Ларионов   Первый коммит на ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  @mixin btn-orange {
    background: #F5851A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    border: 1px solid #F5851A;
    cursor: pointer;
  }
  
  @mixin btn-orange-hover {
    border: 1px solid #F2994A;
    background-color: #FFFFFF;
    color: #F2994A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
  }