This is very large because we pull the entire main stylesheet in and
then add more on top of it. This is however easier than building this
all from the bits and pieces.
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
-// To be re-done https://bugzilla.ipfire.org/show_bug.cgi?id=13051
+@import "main.sass"
+
+// Make the body stretch over the entire screen
+body
+ @extend .container
+
+ // Add some space around the content
+ padding: 3rem 1rem;
+
+h1
+ @extend .title.is-3
+
+// Make all tables .table by default
+table
+ @extend .table.is-fullwidth.is-bordered.is-striped.is-hoverable
+
+// Fix to show the bottom line of the table
+table
+ tr
+ &:last-child
+ td,
+ th
+ border-bottom-width: 1px !important