Skip to content

refactor(site): remove terminal padding and add border to bottom bar #7871

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 1 commit into from
Jun 6, 2023
Merged
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
4 changes: 2 additions & 2 deletions site/src/pages/TerminalPage/TerminalPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,12 +372,13 @@ const BottomBar = ({ proxy, latency }: { proxy: Region; latency?: number }) => {
return (
<Box
sx={{
padding: (theme) => theme.spacing(2),
padding: (theme) => theme.spacing(1, 2),
background: (theme) => theme.palette.background.paper,
display: "flex",
alignItems: "center",
justifyContent: "flex-end",
fontSize: 12,
borderTop: (theme) => `1px solid ${theme.palette.divider}`,
}}
>
<Box
Expand Down Expand Up @@ -520,7 +521,6 @@ const useStyles = makeStyles((theme) => ({
terminal: {
width: "100vw",
overflow: "hidden",
padding: theme.spacing(1),
backgroundColor: theme.palette.background.paper,
flex: 1,
// These styles attempt to mimic the VS Code scrollbar.
Expand Down