diff --git a/src/App.js b/src/App.js index 1e2b5dc1..837de405 100644 --- a/src/App.js +++ b/src/App.js @@ -56,10 +56,15 @@ const GlobalStyle = createGlobalStyle` } .enlarged { - max-width: none !important; - max-height: none !important; - width: auto !important; - height: auto !important; + @media (min-width: 480px) { + max-width: none !important; + max-height: none !important; + } + + @media (max-width: 480px) { + max-width: 100% !important; + max-height: 100% !important; + } } `; diff --git a/src/components/views/Board.jsx b/src/components/views/Board.jsx index d5a037f8..8db8dc9e 100644 --- a/src/components/views/Board.jsx +++ b/src/components/views/Board.jsx @@ -846,14 +846,14 @@ const Board = () => { {thread.link ? (
) : null} {thread.content ? ( @@ -983,37 +984,44 @@ const Board = () => { {reply.link ? ( ) : null} {reply.content ? ( diff --git a/src/components/views/Thread.jsx b/src/components/views/Thread.jsx index 93ba3c10..e20bbb7a 100644 --- a/src/components/views/Thread.jsx +++ b/src/components/views/Thread.jsx @@ -775,7 +775,11 @@ const Thread = () => {