FontSize comments

This commit is contained in:
sageTheDM 2024-10-11 09:30:37 +02:00
parent c672bf1e35
commit 461c469289

View file

@ -2,28 +2,29 @@
import React from 'react'; import React from 'react';
interface FontSizeSettingProps { interface FontSizeSettingProps {
fontSize: string; // The current font size fontSize: string; // The current font size as a string (e.g., "16px")
setFontSize: (newSize: string) => void; // Function to update the font size setFontSize: (newSize: string) => void; // Function to update the font size
} }
const FontSizeSetting: React.FC<FontSizeSettingProps> = ({ fontSize, setFontSize }) => { const FontSizeSetting: React.FC<FontSizeSettingProps> = ({ fontSize, setFontSize }) => {
// Handle changes to the font size input
const handleFontSizeChange = (e: React.ChangeEvent<HTMLInputElement>) => { const handleFontSizeChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const newSize = `${e.target.value}px`; const newSize = `${e.target.value}px`; // Create the new font size string
setFontSize(newSize); setFontSize(newSize); // Update the font size state
document.documentElement.style.setProperty('--font-size', newSize); document.documentElement.style.setProperty('--font-size', newSize); // Update the CSS variable
}; };
return ( return (
<div className="settings-option"> <div className="settings-option"> {/* Container for the font size setting */}
<p>Font Size</p> <p>Font Size</p> {/* Label for the setting */}
<input <input
type="range" type="range" // Range input for selecting font size
min="12" min="12" // Minimum font size
max="30" max="30" // Maximum font size
value={parseInt(fontSize, 10)} // Ensure value is a number value={parseInt(fontSize, 10)} // Ensure value is a number for the slider
onChange={handleFontSizeChange} onChange={handleFontSizeChange} // Update font size on change
/> />
<span>{fontSize}</span> <span>{fontSize}</span> {/* Display the current font size */}
</div> </div>
); );
}; };