summaryrefslogtreecommitdiff
path: root/_sass/neat/grid/_fill-parent.scss
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-08 16:36:31 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-08 16:36:31 -0600
commite182245d3205d929881f51da9b48d6c4ed97a682 (patch)
treed390e8754dec70a9c9293afb801321b96f043c15 /_sass/neat/grid/_fill-parent.scss
Commit inicialHEADmaster
Diffstat (limited to '_sass/neat/grid/_fill-parent.scss')
-rw-r--r--_sass/neat/grid/_fill-parent.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/_sass/neat/grid/_fill-parent.scss b/_sass/neat/grid/_fill-parent.scss
new file mode 100644
index 0000000..415f0b1
--- /dev/null
+++ b/_sass/neat/grid/_fill-parent.scss
@@ -0,0 +1,22 @@
+@charset "UTF-8";
+
+/// Forces the element to fill its parent container.
+///
+/// @example scss - Usage
+/// .element {
+/// @include fill-parent;
+/// }
+///
+/// @example css - CSS Output
+/// .element {
+/// width: 100%;
+/// box-sizing: border-box;
+/// }
+
+@mixin fill-parent() {
+ width: 100%;
+
+ @if $border-box-sizing == false {
+ box-sizing: border-box;
+ }
+}