Skip to content

Commit

Permalink
slight updates
Browse files Browse the repository at this point in the history
  • Loading branch information
FranklinBarto committed Feb 11, 2024
1 parent 2b399bf commit 3638c76
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./out
path: ./build

# Deployment job
deploy:
Expand Down
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export'
output: 'export',
};

export default nextConfig;
4 changes: 2 additions & 2 deletions src/app/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
text-decoration: none; /* Remove underline */
border-radius: 20px; /* Adjust the border radius */
border: 2px solid transparent; /* Add border for the glass effect */
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* Adjust shadow color and intensity */
box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); /* Adjust shadow color and intensity */
transition: all 0.3s ease; /* Add smooth transition effect */
}

Expand All @@ -81,7 +81,7 @@
255,
0.3
); /* Adjust transparency on hover */
box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); /* Adjust shadow intensity on hover */
box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); /* Adjust shadow intensity on hover */
}
}

Expand Down

0 comments on commit 3638c76

Please sign in to comment.