Skip to content

Commit aa0e1e3

Browse files
author
Mike Zorn
authored
feat: Add project selector and sync button to LaunchDevly UI (#392)
This makes LaunchDevly work for devs that need to use multiple projects and also makes it easier to keep those projects' flags in sync with their source environments.
1 parent f90e320 commit aa0e1e3

File tree

7 files changed

+669
-323
lines changed

7 files changed

+669
-323
lines changed

internal/dev_server/ui/dist/index.html

Lines changed: 24 additions & 16 deletions
Large diffs are not rendered by default.

internal/dev_server/ui/src/App.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
@import url('../node_modules/@launchpad-ui/tokens/dist/media-queries.css');
33
@import url('../node_modules/@launchpad-ui/tokens/dist/themes.css');
44

5+
@font-face {
6+
font-family: inter;
7+
font-style: normal;
8+
font-weight: 300 800;
9+
font-display: swap;
10+
src: url('https://fonts.gstatic.com/s/inter/v7/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2')
11+
format('woff2');
12+
}
13+
14+
@font-face {
15+
font-family: 'Audimat 3000 Regulier';
16+
font-style: normal;
17+
font-weight: 400;
18+
font-display: swap;
19+
src: url('Audimat3000-Regulier.var-subset.woff2') format('woff2');
20+
}
21+
522
html,
623
body,
724
#root {
@@ -14,6 +31,19 @@ body,
1431
padding: 2rem;
1532
}
1633

34+
h1,
35+
h2,
36+
h3,
37+
h4,
38+
h5,
39+
h6 {
40+
font-family: 'Audimat 3000 Regulier', sans-serif;
41+
}
42+
43+
span {
44+
font-family: 'Inter', sans-serif;
45+
}
46+
1747
.container {
1848
max-width: 40rem;
1949
margin: 0 auto;

0 commit comments

Comments
 (0)