Skip to content

Commit

Permalink
資格を上に表示、css修正
Browse files Browse the repository at this point in the history
  • Loading branch information
shigekk committed Oct 9, 2024
1 parent 63ba448 commit aee71f9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion src/app/achievements/list-styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

.container {
background-color: #F1F1F1;
padding: 88px 0 103px;
padding: 40px 40px 103px;
}

.content {
Expand Down Expand Up @@ -64,6 +64,12 @@
font-size: 1.25rem;
}

.content table tbody td {
font-size: 1.125rem;
padding: 4px;
text-align: center;
}

.content table tbody tr:nth-child(even) {
background-color: #d9d9d9;
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/achievements/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ export default async function Achievements() {
/>
</div>
<div className={style.container}>
<h2 className={style.title}>参加した大会</h2>
<AchievementList />
<h2 className={style.title}>保有資格</h2>
<div className={style.content}>
<p>
Expand Down Expand Up @@ -54,6 +52,8 @@ export default async function Achievements() {
</tbody>
</table>
</div>
<h2 className={style.title}>参加した大会</h2>
<AchievementList />
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/AchievementCard/AchievementCard.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@media (min-width: variables.$tablet-width) {
.link{
display: flex;
margin: 32px;
margin: 32px 0;
}

.imageBox{
Expand Down

0 comments on commit aee71f9

Please sign in to comment.