Skip to content

Commit

Permalink
Merge pull request #83 from LikeLionHGU/grid
Browse files Browse the repository at this point in the history
Grid
  • Loading branch information
sungyu0309 authored Jan 14, 2025
2 parents cedccb1 + 46296dd commit ec41063
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions js/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ const htmlString1 = grid_info_members
.map(
(member) => `
<div class="grid-member" onclick="saveMemberNum('${member.num}')">
<div class="grid-info-memoji-box">
<div class="grid-memoji-box">
<img
class="grid-info-memoji"
src="./assets/img/grid/memoji/memoji${member.num}.png"
Expand Down Expand Up @@ -409,8 +409,8 @@ const htmlString2 = grid_info_members_mobile
.map(
(
member
) => `<div class="grid-mobile-member" onclick="saveMemberNum('${member.num}', '${member}')">
<div class="grid-mobile-pic-box">
) => `<div class="grid-member" onclick="saveMemberNum('${member.num}', '${member}')">
<div class="grid-memoji-box">
<img
class="grid-mobile-pic"
src="./assets/img/grid/memoji/memoji${member.num}.png"
Expand Down
5 changes: 3 additions & 2 deletions styles/grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
.grid-music {
font-family: "GmarketSansMedium", sans-serif;
font-size: 12px;
color: #0d1c3c;
}

/* 뮤직 아이콘 */
Expand Down Expand Up @@ -194,13 +195,14 @@
.grid-keyword-box {
display: flex;
flex-direction: row;
height: auto;
}

.grid-keyword {
width: 60px;
height: 15px;
margin-left: 2px;
padding: 5px 0px 5px 0px;
padding: 1px 0px 1px 0px;
background: #0d1c3c;
border-radius: 100px;
font-family: "GmarketSansMedium";
Expand All @@ -225,7 +227,6 @@
.grid-music {
margin: 0px 10px 0px 10px;
font-size: 10px;
color: #0d1c3c;
}

.grid-music-icon {
Expand Down

0 comments on commit ec41063

Please sign in to comment.