|
1
|
.givewp-button-group { |
|
2
|
display: flex; |
|
3
|
|
|
4
|
&.space-between { |
|
5
|
justify-content: space-between; |
|
6
|
} |
|
7
|
|
|
8
|
&.center { |
|
9
|
justify-content: center; |
|
10
|
} |
|
11
|
|
|
12
|
&.left { |
|
13
|
justify-content: flex-start; |
|
14
|
} |
|
15
|
|
|
16
|
&.right { |
|
17
|
justify-content: flex-end; |
|
18
|
} |
|
19
|
} |
|
20
|
|