Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Deploy to Netlify Preview
if: ${{ success() && github.ref_name == 'development' }}
run: |
netlify deploy --build \
--site ${{ secrets.NETLIFY_SITE_ID }} \
--auth ${{ secrets.NETLIFY_DEPLOY_KEY }} \
--message "${{ github.event.pull_request.title }}"

- name: Deploy to Netlify Production
if: ${{ success() && github.ref_name == 'main' }}
run: |
Expand Down
8 changes: 4 additions & 4 deletions src/app/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
section {
border-radius: 0.5rem;
max-width: 1700px;
min-width: 375px;
min-width: 300px;
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
p {
font-size: 1.25rem;
Expand All @@ -40,8 +40,8 @@
}

section {
margin: 0.625rem;
padding: 2rem !important;
margin: 0.5rem 0 0.5rem 0;
padding: 1rem;
}

@media screen and (min-width: 768px){
Expand All @@ -51,7 +51,7 @@
}
}

@media screen and (max-width: 1024px){
@media screen and (min-width: 1024px){
section {
margin: 0.5rem 10rem 0.5rem 10rem;
padding: 2rem;
Expand Down
2 changes: 1 addition & 1 deletion src/app/resume/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async function Page(){
<Icon type={`far-circle-down`}/>
</span>
Download</a>
<div className={`bg-white my-2 p-10 mx-10 lg:max-w-[1200px] text-lg`}>
<div className={`invisible sm:visible bg-white my-2 p-10 mx-10 lg:max-w-[1200px] text-lg`}>
<style>
{resumeStylesheet}
</style>
Expand Down
Loading