Skip to content

Commit

Permalink
Fix grid selector color bug color
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Starr committed May 31, 2024
1 parent eb31c28 commit ce7505d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions layouts/shortcodes/tools/grid2fp_code.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
padding: 5px;
margin: 10px;
font-size: 16px;
background: #44475a;
background: #44475a !important;
border: none;
border-radius: 5px;
}
Expand Down Expand Up @@ -83,13 +83,10 @@
}
}

table-container &__item {
&__item {
max-width: 150px;
width: 100%;
height: 36px;
body {
font-family: 'Verdana';
}
margin: 2px;
background: #44475a;
border-radius: 5px;
Expand All @@ -102,10 +99,16 @@
max-width: 30vw;
max-height: 30vh;
}

#svg-container svg{
width: 100% !important;
height: auto !important;
}
</style>




<div id="table-container">
<section class="controls">
<label>
Expand Down Expand Up @@ -311,6 +314,8 @@


document.querySelector('.convert').addEventListener('click', () => {
svg = document.getElementById('svg-container')
svg.innerHTML = "";
drawer = new Drawer('#svg-container', '.table tr')
drawer.generate()
});
Expand Down

0 comments on commit ce7505d

Please sign in to comment.