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> { ...@@ -29,18 +29,18 @@ class App extends React.Component<{}, AppState> {
} }
toggleLeftBar() { toggleLeftBar() {
if (window.innerWidth < 992) { if (window.innerWidth <= 1024) {
this.setState({ this.setState({
toggledRight: false, toggledRight: false,
}); });
} }
this.setState((state) => ({ this.setState((state) => ({
toggledLeft: !state.toggledLeft, toggledLeft: !state.toggledLeft,
})); }));
} }
toggleRightBar() { toggleRightBar() {
if (window.innerWidth < 992) { if (window.innerWidth <= 1024) {
this.setState({ this.setState({
toggledLeft: false, toggledLeft: false,
}); });
......
...@@ -26,7 +26,7 @@ export interface ModuleCardProps { ...@@ -26,7 +26,7 @@ export interface ModuleCardProps {
const ModuleCard: React.FC<ModuleCardProps> = ({ module }: ModuleCardProps) => { const ModuleCard: React.FC<ModuleCardProps> = ({ module }: ModuleCardProps) => {
return ( 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 <Card
className={classNames(styles.moduleCard)} className={classNames(styles.moduleCard)}
as={Link} 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