8000 feat: Redesign workspaces page by kylecarbs · Pull Request #1450 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: Redesign workspaces page #1450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
May 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove templates from nav
  • Loading branch information
kylecarbs committed May 16, 2022
commit 71bf4390034736bc290de75f7a085167a5e439f3
5 changes: 0 additions & 5 deletions site/src/components/NavbarView/NavbarView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ export const NavbarView: React.FC<NavbarViewProps> = ({ user, onSignOut, display
Workspaces
</NavLink>
</ListItem>
<ListItem button className={styles.item}>
<NavLink className={styles.link} to="/templates">
Templates
</NavLink>
</ListItem>
</List>
<div className={styles.fullWidth} />
{displayAdminDropdown && <AdminDropdown />}
Expand Down
2 changes: 2 additions & 0 deletions site/src/theme/overrides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ export const getOverrides = (palette: PaletteOptions) => {
},
MuiButton: {
root: {
// Prevents a loading button from collapsing!
minHeight: 42,
fontWeight: "regular",
fontFamily: MONOSPACE_FONT_FAMILY,
fontSize: 16,
Expand Down
0