Skip to content

Commit

Permalink
fix: Recent Articles Grid
Browse files Browse the repository at this point in the history
  • Loading branch information
CIPHERTron committed Nov 16, 2021
1 parent 95609cb commit 50f633a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions styles/recent.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import styled from '@emotion/styled';

export const Wrapper = styled.div`
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(3, 1fr);
margin-bottom: 60px;
justify-content: center;
@media (max-width: 1320px) {
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 984px) {
grid-template-columns: repeat(2, 1fr);
Expand Down

1 comment on commit 50f633a

@vercel
Copy link

@vercel vercel bot commented on 50f633a Nov 16, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.