Skip to content

Commit

Permalink
Merge pull request #96 from krckyboy/#93
Browse files Browse the repository at this point in the history
#93 Fixing layout.
  • Loading branch information
krckyboy authored Jun 4, 2024
2 parents 7bfdd1c + d655111 commit 5a1847b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 1 addition & 2 deletions frontend/src/app/skills/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ import styles from './styles.module.scss';
import React from 'react';
import Experience from '@/app/skills/_experience/Experience';
import Skills from '@/app/skills/_skills/Skills';
import sharedStyles from '@/styles/about-and-blog-content.module.scss';

const Page: NextPage = () => {
return (
<main className={`${styles.main} ${gStyles.section} ${gStyles.text} ${gStyles.mainContainer} ${sharedStyles.shared}`}>
<main className={`${styles.main} ${gStyles.section} ${gStyles.text} ${gStyles.mainContainer} `}>
<h1 className={gStyles.pageHeading}>Skills</h1>
<Skills />
<Experience />
Expand Down
14 changes: 9 additions & 5 deletions frontend/src/app/skills/styles.module.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
@import '@/styles/vars';

.main {
//h2 {
// font-weight: 500;
// font-size: clamp(1.3rem, 1.5vw, 4rem);
// margin-bottom: 1rem;
//}
h2 {
font-weight: 500;
font-size: clamp(1.4rem, 2vw, 2.5rem);
margin-bottom: 1rem;

&:not(:first-child) {
margin-top: 2rem;
}
}

a {
text-decoration: underline;
Expand Down

0 comments on commit 5a1847b

Please sign in to comment.