mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
Use Geist font in DataGrid
This commit is contained in:
parent
b55344fcc6
commit
7bc444dcff
@ -111,6 +111,9 @@ export function UsersTable(props: {
|
||||
initialState={{
|
||||
pagination: { paginationModel: { pageSize: 15 } },
|
||||
}}
|
||||
sx={{
|
||||
fontFamily: "inherit",
|
||||
}}
|
||||
|
||||
processRowUpdate={async (updatedRow, originalRow) => {
|
||||
for (const column of columns) {
|
||||
|
||||
@ -115,8 +115,12 @@ export function ApiKeysTable(props: {
|
||||
},
|
||||
},
|
||||
}}
|
||||
sx={{
|
||||
fontFamily: "inherit",
|
||||
}}
|
||||
pageSizeOptions={[5, 15, 25]}
|
||||
/>
|
||||
|
||||
|
||||
<Dialog
|
||||
title
|
||||
|
||||
@ -9,7 +9,12 @@ import {
|
||||
import { useColorScheme as useMaterialColorScheme } from "@mui/material";
|
||||
import NextLink from "next/link";
|
||||
import React from "react";
|
||||
const materialTheme = materialExtendTheme();
|
||||
|
||||
const materialTheme = materialExtendTheme({
|
||||
typography: {
|
||||
fontFamily: `var(--font-geist-sans, sans-serif)`,
|
||||
},
|
||||
});
|
||||
|
||||
const theme = extendTheme({
|
||||
fontFamily: {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user