Class | Properties |
---|---|
.justify-self-auto | justify-self: auto; |
.justify-self-start | justify-self: flex-start; |
.justify-self-end | justify-self: flex-end; |
.justify-self-center | justify-self: center; |
.justify-self-stretch | justify-self: stretch; |
@import '~scssfold/src/modules/flex/justify-self';
Override the following variable before including the module. Each key is used for the class name, and the value is used for the css property.
$scssfold-justify-self: (
'auto': auto,
'start': flex-start,
'end': flex-end,
'center': center,
'stretch': stretch,
)