We couldn’t find anything that matched your searched term
PAGES
COMPONENTS
Brand guidelines
Insights
Includes a wide range of shorthand responsive margin and padding utility classes to modify an element’s appearance.
AXA classes are built from a default Sass map ranging from 0.5rem to 5rem.
The classes are named using the format {property}{sides}-{size} for xs and {property}{sides}-{breakpoint}-{size} for sm, md, lg, xl, and xxl.
{property}{sides}-{size}
xs
{property}{sides}-{breakpoint}-{size}
sm
md
lg
xl
xxl
Where size is one of:
0
margin
padding
1
$spacer * .5
2
$spacer * .75
3
$spacer
4
$spacer * 1.5
5
$spacer * 2
6
$spacer * 2.5
7
$spacer * 3
8
$spacer * 3.5
9
$spacer * 4
10
$spacer * 4.5
11
$spacer * 5
auto
Here are some representative examples of these classes:
.mt-0 { margin-top: 0 !important; } .ms-1 { margin-left: ($spacer * .5) !important; } .px-2 { padding-left: ($spacer * .75) !important; padding-right: ($spacer * .75) !important; } .pe-11 { padding-right: ($spacer * 5) !important; } .p-3 { padding: $spacer !important; }
Sample test with new AXA spacer ps-11 / padding left = ($spacer * 5) = 80px
<p class="ps-11"> Sample test with new AXA spacer ps-11 / padding left = ($spacer * 5) = 80px </p>