feat: radius for inputs and buttons, shadow changes

This commit is contained in:
2025-07-18 10:38:36 +04:00
parent 39b4d36a82
commit e033938a03
10 changed files with 60 additions and 32 deletions

View File

@ -21,7 +21,7 @@ type Props = {
export default function RootLayout({ children }: Props) {
return (
<html
lang="en"
lang="ru"
{...mantineHtmlProps}>
<head>
<ColorSchemeScript />
@ -40,7 +40,9 @@ export default function RootLayout({ children }: Props) {
<title />
</head>
<body>
<MantineProvider theme={theme}>
<MantineProvider
theme={theme}
defaultColorScheme={"dark"}>
<Header />
{children}
</MantineProvider>