File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed
Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments