feat(uti): Compiled CSS
[csit.git] / resources / tools / dash / app / pal / static / sass / bootstrap / helpers / _stacks.scss
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stacks.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stacks.scss
new file mode 100644 (file)
index 0000000..6cd237a
--- /dev/null
@@ -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