Skip to content

Commit 1e42386

Browse files
authored
Merge pull request #9 from pdedgar1/claude/improve-toolbar-spacing-01Q6yFp6SizKtSPBeG8ksaHt
Remove font size control from Grid-It Lab to restore functionality
2 parents fcc0bdd + 5952f34 commit 1e42386

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

grid-it-lab.html

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,6 @@ <h3>Reading Direction</h3>
148148
<div class="results-section" id="resultsSection" style="display: none;">
149149
<div class="output-header">
150150
<div class="output-title">Grid View</div>
151-
<div class="font-size-control">
152-
<label for="fontSizeSlider">Font Size:</label>
153-
<input type="range" id="fontSizeSlider" class="slider" min="10" max="24" value="14" step="1">
154-
</div>
155151
</div>
156152
<div id="gridContainer"></div>
157153
<div class="stats" id="statsDisplay"></div>
@@ -342,17 +338,6 @@ <h3>Reading Direction</h3>
342338
});
343339
}
344340

345-
// Font size slider
346-
const fontSizeSlider = document.getElementById('fontSizeSlider');
347-
const gridContainer = document.getElementById('gridContainer');
348-
if (fontSizeSlider && gridContainer) {
349-
fontSizeSlider.addEventListener('input', (e) => {
350-
const table = gridContainer.querySelector('.grid-table');
351-
if (table) {
352-
table.style.fontSize = e.target.value + 'px';
353-
}
354-
});
355-
}
356341
</script>
357342
</body>
358343
</html>

0 commit comments

Comments
 (0)