From 413818f6b40f27c4d7c57b2f2fcc7e17cfa15786 Mon Sep 17 00:00:00 2001 From: Fredrik Oseberg Date: Fri, 21 May 2021 14:17:32 +0200 Subject: [PATCH] fix: reset border radius on mobile --- .../user/common/StandaloneLayout/StandaloneLayout.styles.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/component/user/common/StandaloneLayout/StandaloneLayout.styles.ts b/frontend/src/component/user/common/StandaloneLayout/StandaloneLayout.styles.ts index 7c48403d8b..e6a77dda08 100644 --- a/frontend/src/component/user/common/StandaloneLayout/StandaloneLayout.styles.ts +++ b/frontend/src/component/user/common/StandaloneLayout/StandaloneLayout.styles.ts @@ -17,6 +17,7 @@ export const useStyles = makeStyles(theme => ({ width: '40%', borderRadius: '3px', [theme.breakpoints.down('sm')]: { + borderRadius: '0', width: '100%', minHeight: 'auto', }, @@ -29,6 +30,7 @@ export const useStyles = makeStyles(theme => ({ backgroundColor: '#fff', position: 'relative', [theme.breakpoints.down('sm')]: { + borderRadius: '0', width: '100%', position: 'static', minHeight: 'auto',