Casper Theme - Better CSS Table

Love Ghost and the Casper theme, but hated the way Markdown tables were centred instead of full width - spent the better part of 2 days working out how to get it full width and still scroll on mobile. Copy and paste into the code injection header on your own site!

<style>
    
 table {
     	display: flex !important;
     	display: table !important;
     	width: 100% !important;
        overflow-x: scroll !important;
    } 
    
</style>

See below for results!