]> BookStack Code Mirror - bookstack/blobdiff - resources/assets/sass/_tables.scss
Added migration file.
[bookstack] / resources / assets / sass / _tables.scss
index 1fc8e11c2266a14ec2edfe70f2fa19fb87832ede..31ac92f602d5d1a09da73f5cd4acbbf31bf9cbeb 100644 (file)
@@ -35,6 +35,12 @@ table.table {
   tr:hover {
     background-color: #EEE;
   }
+  .text-right {
+    text-align: right;
+  }
+  .text-center {
+    text-align: center;
+  }
 }
 
 table.no-style {
@@ -51,4 +57,18 @@ table.list-table {
     vertical-align: middle;
     padding: $-xs;
   }
+}
+
+.fake-table {
+  display: table;
+  width: 100%;
+  > div {
+    display: table-row-group;
+  }
+  > div > div {
+    display: table-row;
+  }
+  > div > div > div {
+    display: table-cell;
+  }
 }
\ No newline at end of file