From 1fd95e2abf6fe1a91cfbb4cf1157c7b71127c019 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Fri, 27 Sep 2024 13:10:25 +0200 Subject: [PATCH] Remove unnecessary settings --- frontend/src/App.scss | 2 +- frontend/src/components/Settings.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/App.scss b/frontend/src/App.scss index b855b5f..3859d21 100644 --- a/frontend/src/App.scss +++ b/frontend/src/App.scss @@ -1,6 +1,6 @@ // Variables $padding: 20px; -$navbar-height: 64px; // Adjust this value based on your preference +$navbar-height: 64px; .custom-navbar { display: flex; diff --git a/frontend/src/components/Settings.js b/frontend/src/components/Settings.js index acd70a4..76adc64 100644 --- a/frontend/src/components/Settings.js +++ b/frontend/src/components/Settings.js @@ -3,7 +3,6 @@ import { Modal, Text, Toggle, Tooltip, Input, Spacer, Button, useTheme } from '@ const Settings = ({ visible, onClose, currentTheme, onThemeChange, onSettingsChange }) => { const theme = useTheme(); - const [fontSize, setFontSize] = useState('14'); const [autoSave, setAutoSave] = useState(false); const handleSubmit = () => {