Remove unnecessary settings

This commit is contained in:
2024-09-27 13:10:25 +02:00
parent 7f8b95d42e
commit 1fd95e2abf
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
// Variables
$padding: 20px;
$navbar-height: 64px; // Adjust this value based on your preference
$navbar-height: 64px;
.custom-navbar {
display: flex;

View File

@@ -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 = () => {