Skip to content

Commit

Permalink
feat: Add project selector and sync button to LaunchDevly UI (#392)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mike-zorn authored Aug 14, 2024
1 parent f90e320 commit aa0e1e3
Show file tree
Hide file tree
Showing 7 changed files with 669 additions and 323 deletions.
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

0 comments on commit aa0e1e3

Please sign in to comment.