Files
suwayomi-material-you-webui/src/modules/tracker/Tracker.constants.ts
T

23 lines
611 B
TypeScript
Raw Normal View History

2024-03-29 16:54:53 +01:00
/*
* 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/.
*/
2024-04-14 15:50:12 +02:00
import { SxProps, Theme } from '@mui/material/styles';
2024-03-29 16:54:53 +01:00
export const DIALOG_PADDING: number = 2;
2024-04-14 15:50:12 +02:00
export const CARD_BACKGROUND: SxProps<Theme> = {
2024-03-29 16:54:53 +01:00
backgroundColor: 'transparent',
boxShadow: 'unset',
backgroundImage: 'unset',
};
2024-04-14 15:50:12 +02:00
export const CARD_STYLING: SxProps<Theme> = {
2024-03-29 16:54:53 +01:00
padding: DIALOG_PADDING,
...CARD_BACKGROUND,
};