Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 24 additions & 16 deletions internal/dev_server/ui/dist/index.html

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions internal/dev_server/ui/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
@import url('../node_modules/@launchpad-ui/tokens/dist/media-queries.css');
@import url('../node_modules/@launchpad-ui/tokens/dist/themes.css');

@font-face {
font-family: inter;
font-style: normal;
font-weight: 300 800;
font-display: swap;
src: url('https://fonts.gstatic.com/s/inter/v7/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2')
format('woff2');
}

@font-face {
font-family: 'Audimat 3000 Regulier';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('Audimat3000-Regulier.var-subset.woff2') format('woff2');
}

html,
body,
#root {
Expand All @@ -14,6 +31,19 @@ body,
padding: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Audimat 3000 Regulier', sans-serif;
}

span {
font-family: 'Inter', sans-serif;
}

.container {
max-width: 40rem;
margin: 0 auto;
Expand Down
Loading