8000 refactor: Show template version in the workspace page by BrunoQuaresma · Pull Request #5194 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

refactor: Show template version in the workspace page #5194

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 5 commits into from
Nov 30, 2022
Merged
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
Mobile adjustment
  • Loading branch information
BrunoQuaresma committed Nov 29, 2022
commit e19a0d3385216507554409abeb6ddcc6f04c5576
11 changes: 9 additions & 2 deletions site/src/components/Stats/Stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,24 @@ const useStyles = makeStyles((theme) => ({
alignItems: "center",
color: theme.palette.text.secondary,
margin: "0px",

[theme.breakpoints.down("sm")]: {
display: "block",
padding: theme.spacing(2),
},
},

statItem: {
padding: theme.spacing(2),
paddingTop: theme.spacing(1.75),
padding: theme.spacing(1.75),
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(2),
display: "flex",
alignItems: "baseline",
gap: theme.spacing(1),

[theme.breakpoints.down("sm")]: {
padding: theme.spacing(1),
},
},

statsLabel: {
Expand Down
0