Skip to content

Commit

Permalink
[Update]MainPage 메인페이지 css변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ChungO5 committed Jun 21, 2024
1 parent c112e92 commit b3cc52d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/atoms/GameItemSkeleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const SkeletonStyle = styled.div`
width: 380px;
height: 300px;
margin: 10px;
float: left;
display: inline-block;
border-radius: 10px;
box-shadow: 0 0 0 2px #ccc;
Expand Down
2 changes: 1 addition & 1 deletion src/components/molecules/GameItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const GameItemBlock = styled.div`
width: 380px;
height: 300px;
margin: 10px;
float: left;
display: inline-block;
border-radius: 10px;
box-shadow: 0 0 0 2px #ddddff;
cursor: pointer;
Expand Down
6 changes: 5 additions & 1 deletion src/components/organisms/GameList.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ import SortSelect from "../atoms/SortSelect";
import AdBlock from "../atoms/AdBlock";

const GameStyle = styled.div`
@media (max-width: 950px) {
width: 800px;
}
margin: auto;
width: 1200px;
width: 90%;
height: auto;
overflow: hidden;
text-align: center;
.sortbox {
text-align: right;
select {
Expand Down

0 comments on commit b3cc52d

Please sign in to comment.