Skip to content

Commit

Permalink
Fix some error
Browse files Browse the repository at this point in the history
  • Loading branch information
nnnlog committed Jul 11, 2024
1 parent 0f93f6f commit 04e6db8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 6 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ body {
width: 100%;
background: #fff;
z-index: 100;
padding: 5rem 7rem;
padding: 3rem 7rem;
}
@media screen and (max-width: 800px) {
@media screen and (max-width: styles.$media-query-width) {
.nav,
.lang {
padding: 0 2rem;
Expand All @@ -214,5 +214,9 @@ body {
// margin-right: 0;
// }
//}
.content-main {
padding: 3rem 3rem !important;
}
}
</style>
2 changes: 1 addition & 1 deletion src/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default {
duration: "(2023.08 ~ )",
koi2024first:
"Coordinator of Korea Olympiad in Informatics 2024 1{st} Programming Contest{duration}",
koi2024first_duration: "(2024.02 ~ 2024.05)",
koi2024first_duration: "(2024.05)",
ioi_camp:
"TA at Training Camp of International Olympiad in Informatics, Republic of Korea{duration}",
ioi_camp_duration: "(2023.08 ~ )",
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/ko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
"제38회 한국정보올림피아드 1차 대회 일반고 부문 은상{duration}",
first_duration: "(2021.05)",
},
view_all: "View all experiences related to algorithm",
view_all: "알고리즘 관련 모든 활동 보기",
},
software: {
header: "이수한 소프트웨어 활동{duration}",
Expand Down
8 changes: 2 additions & 6 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ $primary-scroll-color: #7B64F040;

$hr-height: 40px;

$media-query-width: 800px;

sup {
font-size: 1rem;
align-self: flex-start;
Expand Down Expand Up @@ -114,9 +116,3 @@ li {
}
}
}

@media screen and (max-width: 600px) {
.content-main {
padding: 3rem 3rem;
}
}

0 comments on commit 04e6db8

Please sign in to comment.