Feature/modify global update settings (#432)

* Move setting components in "settings" folder

* Add setting to change global update automation
This commit is contained in:
schroda
2023-10-29 02:01:59 +02:00
committed by GitHub
parent 4c6d507405
commit 678df88068
9 changed files with 149 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { styled } from '@mui/material';
export const CheckboxContainer = styled('div')({
display: 'flex',
flexDirection: 'column',
maxHeight: '170px',
overflow: 'auto',
});