0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 07:12:39 +00:00

Remove text wrapping from spanned header

This removes text wrapping from col-spanned headers inside a classtable...needed for half-tables that contain `--- Spells Slots per Spell Level ---` so they don't wrap to next line.

Both v3 and Legacy
This commit is contained in:
Gazook89
2021-08-09 21:09:34 -05:00
parent e3285b5ca4
commit 5d4bc23c84
2 changed files with 6 additions and 0 deletions

View File

@@ -514,6 +514,9 @@ body {
// * CLASS TABLE
// *****************************/
.page .classTable{
th[colspan] {
white-space : nowrap;
}
&.frame {
margin-top : 25px;
margin-bottom : 40px;

View File

@@ -407,6 +407,9 @@ body {
border-image-slice : 150 200 150 200;
border-image-source : @frameBorderImage;
border-image-width : 47px;
th[colspan] {
white-space : nowrap;
}
h5{
margin-bottom : 10px;
}