summaryrefslogtreecommitdiffstats
path: root/scss/helpers/_stacks.scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss/helpers/_stacks.scss')
-rw-r--r--scss/helpers/_stacks.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/scss/helpers/_stacks.scss b/scss/helpers/_stacks.scss
new file mode 100644
index 0000000..6cd237a
--- /dev/null
+++ b/scss/helpers/_stacks.scss
@@ -0,0 +1,15 @@
+// scss-docs-start stacks
+.hstack {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ align-self: stretch;
+}
+
+.vstack {
+ display: flex;
+ flex: 1 1 auto;
+ flex-direction: column;
+ align-self: stretch;
+}
+// scss-docs-end stacks