Skip to content

Commit 41bb755

Browse files
Update page_code_custom.html
1 parent 7e0874b commit 41bb755

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

page_code_custom.html

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
<style>
22
/* grid layout reverse */
33
@media screen and (min-width: 992px) {
4-
[data-order-last-desktop="true"] { order: 2; }
4+
[data-order-desktop-first="true"] { order: -1; }
5+
[data-order-desktop-last="true"] { order: 2; }
56
}
67
@media screen and (min-width: 768px) {
7-
[data-order-last-tablet="true"] { order: 2; }
8+
[data-order-tablet-first="true"] { order: -1; }
9+
[data-order-tablet-last="true"] { order: 2; }
810
}
11+
/* align items */
12+
[data-align-items-start="true"] { align-items: start !important; }
13+
[data-align-items-center="true"] { align-items: center !important; }
14+
[data-align-items-end="true"] { align-items: end !important; }
15+
/* justify content */
16+
[data-justify-content-start="true"] { justify-content: start !important; }
17+
[data-justify-content-center="true"] { justify-content: center !important; }
18+
[data-justify-content-end="true"] { justify-content: end !important; }
19+
[data-justify-content="top"] { justify-content: start !important; }
20+
[data-justify-content="center"] { justify-content: center !important; }
21+
[data-justify-content="bottom"] { justify-content: end !important; }
22+
/* text align */
23+
[data-text-align-left="true"] { text-align: left !important; }
24+
[data-text-align-center="true"] { text-align: center !important; }
25+
[data-text-align-right="true"] { text-align: right !important; }
26+
/* max width */
27+
[data-max-width-none="true"] { max-width: none !important; }
928
</style>

0 commit comments

Comments
 (0)