]> BookStack Code Mirror - bookstack/blobdiff - resources/sass/_layout.scss
Update Localization.php in Middleware with "no" tag for estimate.
[bookstack] / resources / sass / _layout.scss
index 439bf8512361c3eae0546484ceb1bc89d84ea9c6..519cb27ad7787f31199276fbe821d87334a76603 100644 (file)
@@ -121,14 +121,30 @@ body.flexbox {
   position: relative;
 }
 
+.flex-container-row {
+  display: flex;
+  flex-direction: row;
+  &.v-center {
+    align-items: center;
+  }
+}
+
 .flex-container-column {
   display: flex;
   flex-direction: column;
 }
 
+.flex-container-column.wrap, .flex-container-row.wrap {
+  flex-wrap: wrap;
+}
+
 .flex {
   min-height: 0;
   flex: 1;
+  &.fit-content {
+    flex-basis: auto;
+    flex-grow: 0;
+  }
 }
 
 .justify-flex-end {