Skip to content

Commit

Permalink
Refactor: fix broken css when apply pico.css.
Browse files Browse the repository at this point in the history
  • Loading branch information
jungmir committed Jun 1, 2024
1 parent 04a962f commit ce172b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const Footer = () => {
export default Footer;

const Container = styled.div`
width: 100vw;
margin-top: 10vh;
`;

const Sponsors = styled.div`
Expand All @@ -180,6 +180,7 @@ const About = styled.div`
height: 9rem;
margin-bottom: 2.5rem;
color: #FEBD99;
height: max-content;
border-top: 1px solid black;
Expand All @@ -194,6 +195,10 @@ const About = styled.div`
padding-left: 1%;
& > table {
border: 1px;
td {
background-color: #090909 !important;
}
tr > td:nth-of-type(2) {
padding-left: 1.5rem;
}
Expand Down
4 changes: 4 additions & 0 deletions src/components/common/Page/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ div.cm-page {
min-height: 90vh;
}

span {
color: #C2C7D0;
}

.purple {
color: $purple;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Program/tutorial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const TutorialPage = () => {
return <Page title="튜토리얼">
<h1>{t("PyCon Korea 2024 튜토리얼 진행자 모집")}</h1>
<span>{t("PyCon Korea 2024 참가자 분들께 새로운 기술, 라이브러리를 전수해주실 진행자 분들을 모집합니다.")}</span>
<button>{t("지원하기")}</button>
<button className="secondary" style={{fontSize: "small", padding: "4px 8px"}}>{t("지원하기")}</button>
<br/><br/>
<h2>{t("튜토리얼이란?")}</h2>
<span>{t("PyCon Korea의 튜토리얼은 파이썬에 대한 새로운 기술이나 라이브러리를 먼저 경험하신 분들로부터 직접 배울 수 있는 프로그램입니다. 이 곳에서는 현장에서 질문하고 해결하는 과정을 통해 해당 기술에 대해 깊이 있는 지식을 습득하게 됩니다.")}</span>
Expand Down

0 comments on commit ce172b9

Please sign in to comment.