0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 19:32:45 +00:00

Fix two css values throwing errors

This commit is contained in:
Gazook89
2021-08-10 14:35:28 -05:00
parent 3cf5dc74bb
commit c8997cee68
2 changed files with 6 additions and 6 deletions

View File

@@ -238,7 +238,7 @@ body {
// ************************************/ // ************************************/
.descriptive{ .descriptive{
.useSansSerif(); .useSansSerif();
display : block-inline; display : inline-block;
margin-top : 1.4em; margin-top : 1.4em;
background-color : #faf7ea; background-color : #faf7ea;
font-family : ScalySansRemake; font-family : ScalySansRemake;
@@ -335,12 +335,12 @@ body {
// Monster Ability table // Monster Ability table
hr + table:first-of-type{ hr + table:first-of-type{
margin : 0; margin : 0;
column-span : 1; column-span : none;
color : @headerText; color : @headerText;
background-color : transparent; background-color : transparent;
border-style : none; border-style : none;
border-image : none; border-image : none;
-webkit-column-span : 1; -webkit-column-span : none;
tr { tr {
background-color : transparent; background-color : transparent;
} }

View File

@@ -230,11 +230,11 @@ body {
// Monster Ability table // Monster Ability table
hr+table{ hr+table{
margin : 0; margin : 0;
column-span : 1; column-span : none;
background-color : transparent; background-color : transparent;
border-style : none; border-style : none;
border-image : none; border-image : none;
-webkit-column-span : 1; -webkit-column-span : none;
tbody{ tbody{
tr:nth-child(odd), tr:nth-child(even){ tr:nth-child(odd), tr:nth-child(even){
background-color : transparent; background-color : transparent;
@@ -415,7 +415,7 @@ body {
// * DESCRIPTIVE TEXT BOX // * DESCRIPTIVE TEXT BOX
// ************************************/ // ************************************/
.phb .descriptive{ .phb .descriptive{
display : block-inline; display : inline-block;
margin-bottom : 1em; margin-bottom : 1em;
background-color : #faf7ea; background-color : #faf7ea;
font-family : ScalySans; font-family : ScalySans;