Skip to content

Commit 51ff4e4

Browse files
committed
fix: lint
1 parent 3364f22 commit 51ff4e4

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

ui/src/pages/_app.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import '@rungalileo/icons/styles.css';
1212
import '@/styles/globals.css';
1313

1414
import { MantineProvider } from '@mantine/core';
15-
16-
import { appTheme } from '@/theme';
1715
import { DatesProvider } from '@mantine/dates';
1816
import { ModalsProvider } from '@mantine/modals';
1917
import { Notifications } from '@mantine/notifications';
@@ -26,6 +24,7 @@ import { LoginModal } from '@/core/components/login-modal';
2624
import { AuthProvider, useAuth } from '@/core/providers/auth-provider';
2725
import { QueryProvider } from '@/core/providers/query-provider';
2826
import type { NextPageWithLayout } from '@/core/types/page';
27+
import { appTheme } from '@/theme';
2928

3029
type AppPropsWithLayout = AppProps & {
3130
Component: NextPageWithLayout;

ui/src/theme.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
TextInput,
1010
} from '@mantine/core';
1111

12-
/** Default vertical gap between label and input for form controls. */
1312
const LABEL_INPUT_GAP = 8;
1413

1514
const formInputLabelStyles = {
@@ -18,10 +17,6 @@ const formInputLabelStyles = {
1817
},
1918
};
2019

21-
/**
22-
* App theme. Defines default styles for form inputs (label spacing) in one place
23-
* so all labels have consistent spacing without repeating styles per component.
24-
*/
2520
export const appTheme = createTheme({
2621
components: {
2722
TextInput: TextInput.extend({

0 commit comments

Comments
 (0)