@charset "UTF-8";

// @description
// * This file imports various alignment modules
// * that can be used to set different CSS properties.

// @author Khaled Mohamed

// @license MIT

// @repository: https://github.com/Black-Axis/sass-pire

// @namespace mixins/flex-props/flexbox

// * forwarding the "normal" alignment module.
// * This module likely provides styles for normal alignment.
// @see normal
@forward "normal";

// * forwarding the "stretch" alignment module.
// * The "stretch" module probably provides styles to stretch elements.
// @see stretch
@forward "stretch";

// * forwarding the "start" alignment module.
// * This module likely provides styles for starting alignment.
// @see start
@forward "start";

// * forwarding the "end" alignment module.
// * The "end" module probably provides styles for ending alignment.
// @see end
@forward "end";

// * forwarding the "right" alignment module.
// * This module likely provides styles for right alignment.
// @see right
@forward "right";

// * forwarding the "left" alignment module.
// * The "left" module probably provides styles for left alignment.
// @see left
@forward "left";

// * forwarding the "fstart" alignment module.
// * This module likely provides styles for flex-start alignment.
// @see fstart
@forward "fstart";

// * forwarding the "fend" alignment module.
// * The "fend" module probably provides styles for flex-end alignment.
// @see fend
@forward "fend";

// * forwarding the "center" alignment module.
// * This module likely provides styles for center alignment.
// @see center
@forward "center";

// * forwarding the "between" alignment module.
// * The "between" module probably provides styles for
// * space-between alignment.
// @see between
@forward "between";

// * forwarding the "around" alignment module.
// * This module likely provides styles for space-around alignment.
// @see around
@forward "around";

// * forwarding the "evenly" alignment module.
// * The "evenly" module probably provides styles for
// * space-evenly alignment.
// @see evenly
@forward "evenly";

// * forwarding the "inherit" alignment module.
// * This module likely provides styles for inheriting alignment.
// @see inherit
@forward "inherit";
