mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 19:45:35 +01:00
Change UI Font
This commit is contained in:
parent
2e84fc62b1
commit
0f4b1226dc
4 changed files with 3198 additions and 7 deletions
|
|
@ -68,7 +68,6 @@
|
|||
"@date-fns/utc": "^1.2.0",
|
||||
"@dicebear/collection": "^9.2.1",
|
||||
"@dicebear/core": "^9.2.1",
|
||||
"@fontsource/inter": "^4.5.15",
|
||||
"@hello-pangea/dnd": "^17.0.0",
|
||||
"@prisma/client": "6.1.0",
|
||||
"@prisma/extension-read-replicas": "^0.4.0",
|
||||
|
|
@ -92,6 +91,7 @@
|
|||
"dotenv": "^10.0.0",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"fs-extra": "^10.0.1",
|
||||
"geist": "^1.3.1",
|
||||
"immer": "^9.0.12",
|
||||
"ipaddr.js": "^2.0.1",
|
||||
"is-ci": "^3.0.1",
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
import { Metadata } from 'next';
|
||||
import Providers from './Providers';
|
||||
import '@fontsource/inter/300.css';
|
||||
import '@fontsource/inter/400.css';
|
||||
import '@fontsource/inter/500.css';
|
||||
import '@fontsource/inter/700.css';
|
||||
// eslint-disable-next-line import/no-unresolved
|
||||
import { GeistSans } from 'geist/font/sans';
|
||||
import 'react-basics/dist/styles.css';
|
||||
import '@/styles/index.css';
|
||||
import '@/styles/variables.css';
|
||||
|
||||
export default function ({ children }) {
|
||||
return (
|
||||
<html lang="en" data-scroll="0">
|
||||
<html lang="en" data-scroll="0" className={GeistSans.className}>
|
||||
<head>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
html,
|
||||
body {
|
||||
font-family: Inter, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
line-height: 1.5rem;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue