diff options
author | 2024-09-12 00:53:50 +0100 | |
---|---|---|
committer | 2024-09-12 00:53:50 +0100 | |
commit | d6a871062723615d07bb0bd470340f964cbb22af (patch) | |
tree | d09b80896d7a8285b3ee180182e911fa2b0d7c5f | |
parent | Fix some cart removal logic (diff) |
Fix margins for small devices
-rw-r--r-- | thallium-frontend/src/App.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/thallium-frontend/src/App.tsx b/thallium-frontend/src/App.tsx index f5512af..0aee720 100644 --- a/thallium-frontend/src/App.tsx +++ b/thallium-frontend/src/App.tsx @@ -51,6 +51,8 @@ const AppContainer = styled.div` display: flex; flex-direction: column; margin: 0 auto; + margin-left: 10px; + margin-right: 10px; height: 100%; `; |