From 6798057b2d690e4fd1731f3c5431882c4f6f655e Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Mon, 1 Apr 2024 01:01:57 +0300 Subject: [PATCH] Fix media query in profile styles --- frontend/src/features/user/profile/styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/features/user/profile/styles.js b/frontend/src/features/user/profile/styles.js index 41f9ab7..0e63bd8 100644 --- a/frontend/src/features/user/profile/styles.js +++ b/frontend/src/features/user/profile/styles.js @@ -6,7 +6,7 @@ const getStyles = theme => { panel: { display: "flex", flexDirection: "row", - "@media (max-width: 600px)": { + "@media (maxWidth: 600px)": { flexDirection: "column" // change direction for small screens } },