We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c639f2 commit 6ca5416Copy full SHA for 6ca5416
src/components/Blogs/Blogs.tsx
@@ -16,6 +16,11 @@ const PostDiv = styled.div`
16
width: 100%;
17
margin: 0 auto;
18
display: inline-block;
19
+ @media (max-width: 900px) {
20
+ padding: 0px;
21
+ display: flex;
22
+ flex-direction: column;
23
+ }
24
`
25
26
@@ -29,6 +34,9 @@ const ImageDiv = styled.div`
29
34
border-radius: 10px;
30
35
box-shadow: 0px 0px 8px 0px #ada8a8;
31
36
}
37
38
+ width: 100%;
39
32
40
33
41
42
const PostText = styled.div`
@@ -59,6 +67,9 @@ const PostText = styled.div`
59
67
60
68
61
69
70
71
72
62
73
63
74
64
75
const Blogs: React.FC = () => {
0 commit comments