fixed too much margin in mobile

This commit is contained in:
plebbitor
2023-04-23 14:09:23 +02:00
parent 27a8a4e520
commit 38ff806f6c
3 changed files with 2106 additions and 2 deletions
+2
View File
@@ -2873,6 +2873,8 @@ export const BoardForm = styled.div`
}}
@media (max-width: 480px) {
margin-top: -5%;
.thread {
display: none;
}
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -5,8 +5,8 @@ import { Tooltip } from 'react-tooltip';
import { useAccount, useComment, usePublishComment } from '@plebbit/plebbit-react-hooks';
import { debounce } from 'lodash';
import useGeneralStore from '../../hooks/stores/useGeneralStore';
import { Container, NavBar, Header, Break, PostForm, PostFormTable, BoardForm } from '../styled/Board.styled';
import { ReplyFormLink, TopBar, BottomBar } from '../styled/Thread.styled';
import { Container, NavBar, Header, Break, PostForm, PostFormTable } from '../styled/Board.styled';
import { ReplyFormLink, TopBar, BottomBar, BoardForm } from '../styled/Thread.styled';
import ImageBanner from '../ImageBanner';
import Post from '../Post';
import PostLoader from '../PostLoader';