Skip to content
Snippets Groups Projects
Commit 01810b2c authored by Sreeram, Sudarshan's avatar Sreeram, Sudarshan :carrot:
Browse files

Fix module card scaling on smaller screens

parent 9a1d93b3
No related branches found
No related tags found
No related merge requests found
......@@ -29,18 +29,18 @@ class App extends React.Component<{}, AppState> {
}
toggleLeftBar() {
if (window.innerWidth < 992) {
if (window.innerWidth <= 1024) {
this.setState({
toggledRight: false,
});
}
}
this.setState((state) => ({
toggledLeft: !state.toggledLeft,
}));
}
toggleRightBar() {
if (window.innerWidth < 992) {
if (window.innerWidth <= 1024) {
this.setState({
toggledLeft: false,
});
......
......@@ -26,7 +26,7 @@ export interface ModuleCardProps {
const ModuleCard: React.FC<ModuleCardProps> = ({ module }: ModuleCardProps) => {
return (
<Col xs={12} sm={6} lg={4} xl={3} style={{ marginTop: "1.875rem" }}>
<Col xs={12} sm={12} md={6} lg={6} xl={3} style={{ marginTop: "1.875rem" }}>
<Card
className={classNames(styles.moduleCard)}
as={Link}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment