mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-08 14:35:49 +01:00
15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
|
|
import { createStyles } from '@mantine/core';
|
||
|
|
|
||
|
|
export default createStyles((theme) => ({
|
||
|
|
title: {
|
||
|
|
color: theme.colorScheme === 'dark' ? theme.white : theme.black,
|
||
|
|
fontSize: 100,
|
||
|
|
fontWeight: 900,
|
||
|
|
letterSpacing: -2,
|
||
|
|
|
||
|
|
[theme.fn.smallerThan('md')]: {
|
||
|
|
fontSize: 50,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}));
|