Compare commits

..

No commits in common. "b3648e013ad8261aedfabdf44a00c42bda17663a" and "7e1b4990fd4c1d9919ea424c7cc1fd1e4099b952" have entirely different histories.

View file

@ -516,19 +516,6 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
setValue={setBasicTextColor}
cssVariable=""
/>
<FontSizeSetting
fontSize={fontSize}
setFontSize={setFontSize}
/>
<DropdownSetting
label="Font Family"
value={fontFamily}
setValue={(newFont) => {
setFontFamily(newFont);
document.documentElement.style.setProperty('--font-family', newFont);
}}
options={fontOptions}
/>
</>
)}