
Hi. I've been updating the Hollow Earth Expedition character sheet and just noticed that the styles for my wrapper div are not being applied. <!-- .charsheet is parent -->
<div class="sheet-hex"> <!-- This element missing min-width and max-width -->
<!-- Character sheet worker and elements code in here are properly styled-->
</div> When I look at the inline style sheet the following is here: .charsheet .sheet-hex { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; max-width: 640px; min-width: 480px; width: 100%;
} But the sheet-hex class is not being attached to the div in web inspector and clearly when I shrink the sheet down it doesn't stop at 480px (resulting in a predictable jumbled mess). I'm not sure why this would be. Is there something special about the root element of the character sheet I'm missing?