Skip to content

Commit c0fa67d

Browse files
committed
chore(css): add layout.scss
1 parent 01da937 commit c0fa67d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

src/client/styles/main/layout.scss

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/**********
2+
* OPTIONS
3+
**********/
4+
&.inline {
5+
display: inline-flex;
6+
}
7+
8+
&.right {
9+
align-items: flex-end;
10+
.control-label {
11+
flex-direction: row-reverse;
12+
}
13+
.sublabel {
14+
flex-direction: row-reverse;
15+
}
16+
.checkbox {
17+
margin-right: 0;
18+
margin-left: remy(6);
19+
}
20+
}
21+
22+
&.horizontal {
23+
flex-direction: row;
24+
.control-label {
25+
padding-right: remy(10);
26+
}
27+
.sublabel {
28+
flex-direction: row;
29+
}
30+
&.right {
31+
.sublabel {
32+
flex-direction: row-reverse;
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)