Skip to content

Commit

Permalink
Fix cropped numebrs in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rastikerdar committed Mar 18, 2022
1 parent 2f1b579 commit b8b0de8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions website/src/features/lab/SettingsPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { RootState } from "./reducers";
import { LabState } from "./labSlice";

export function SettingsPanel() {
const { t } = useTranslation(undefined, {keyPrefix: 'lab'});
const { t } = useTranslation(undefined, { keyPrefix: "lab" });
const dispatch = useDispatch();
const labState: LabState = useSelector(
(state: RootState) => state.labReducer,
Expand Down Expand Up @@ -45,8 +45,10 @@ export function SettingsPanel() {
maxWidth: "100%",
pb: 0.5,
px: 2,
"@media (max-width: 480px)": {
pt: 1,
pt: 2,
mt: {
xs: -1,
md: -2,
},
gap: 2,
}}
Expand Down

0 comments on commit b8b0de8

Please sign in to comment.