Skip to content

chore: use px values instead of theme.spacing and theme.shape.borderRadius #10519

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 6 commits into from
Nov 6, 2023
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
🧹
  • Loading branch information
aslilac committed Nov 3, 2023
commit 6aae45dc7773d414fbcee8c955a14c759271d24c
2 changes: 1 addition & 1 deletion site/src/components/Resources/PortForwardButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const PortForwardPopoverView: React.FC<
css={{
fontSize: 14,
height: 34,
p: "0 12px",
padding: "0 12px",
background: "none",
border: 0,
outline: "none",
Expand Down
8 changes: 5 additions & 3 deletions site/src/components/TableToolbar/TableToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ import Skeleton from "@mui/material/Skeleton";

export const TableToolbar = styled(Box)(({ theme }) => ({
fontSize: 13,
marginBottom: 8,
marginBottom: "8px",
marginTop: 0,
height: 36, // The size of a small button
height: "36px", // The size of a small button
color: theme.palette.text.secondary,
"& strong": { color: theme.palette.text.primary },
display: "flex",
alignItems: "center",
"& strong": {
color: theme.palette.text.primary,
},
}));

type BasePaginationStatusProps = {
Expand Down