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
| @import "../../assets/styles/global";
|
| .container {
| display: flex;
| justify-content: space-between;
|
| @include respond("phone") {
| flex-direction: column;
| }
| }
|
| .block {
| &__controls {
| @include respond("phone") {
| width: 100%;
| }
| }
|
| & > button {
| margin: 0 5px;
|
| &:first-child {
| margin-left: 0;
| }
|
| &:last-child {
| margin-right: 0;
| }
|
| @include respond("phone") {
| margin: 0 2px;
| margin-bottom: 10px;
| }
| }
| }
|
| .common {
| margin-left: auto;
| }
|
| .hidden {
| display: none;
| }
|
|