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