yzt
2023-05-26 de4278af2fd46705a40bac58ec01122db6b7f3d7
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//  =================
//      Imports
//  =================
 
@import '../../../base/base';    // Base Variables
 
/* Common styles */
.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 2em;
}
 
.pricing__item {
  position: relative;
  text-align: center;
  -webkit-flex: 0 1 315px;
  flex: 0 1 315px;
}
 
.pricing__feature-list {
  text-align: left;
}
 
.pricing__action {
  color: inherit;
  border: none;
  background: none;
 
  &:focus {
    outline: none;
  }
}
 
//  ===============================
//       _pricing-table Imports 
//  ===============================
 
@import '_pricing-table/_pricing-table-toggle';
@import '_pricing-table/_pricing-table-animated';
@import '_pricing-table/_pricing-table-basic';