command.scss 365 Bytes
Newer Older
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
.command {
    width: 100%;

    >div {
        display: inline-block;
    }

    .command1 {
        width: 46%;

        p {
            margin-top: 0;
        }
    }

    .command2 {
        width: 54%;

        p {
            margin-top: 0;
        }
    }

    .command1,
    .command2 {
        .lineMargin {
            margin-top: 20px;
        }
    }
}