Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
RSickenberg committed Jul 10, 2024
2 parents b4ccf36 + b17362e commit 6dfec82
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.4] - 2024-07-10
### Added
- PDF V4
- Darkmode: Tech cards now have white shadow casted

## [1.0.3] - 2024-07-09
### Fixed
- SEO: Fixed picture with a new one
Expand Down Expand Up @@ -182,7 +187,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Few issues on dark mode and event listener

[unreleased]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.3...HEAD
[unreleased]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.4...HEAD
[1.0.4]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.3...v1.0.4
[1.0.3]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.0...v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rsickenberg/portfolio-next",
"type": "module",
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"repository": {
"type": "git",
Expand Down
Binary file modified public/assets/pdf/onepage.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/CardTech.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let image = images[tech.imagePath]()
<card-tech class="hidden" data-techId={tech.order}></card-tech>
<div
id={"tech-card-" + tech.order}
class={"card flex flex-col py-3 lg:py-0 md:justify-center border-2 rounded-xl border-black dark:border-white space-y-4 sm:space-y-7 md:min-w-[170px] md:min-h-[200px] will-change-[opacity] md:shadow-xl"}
class={"card flex flex-col py-3 lg:py-0 md:justify-center border-2 rounded-xl border-black dark:border-white space-y-4 sm:space-y-7 md:min-w-[170px] md:min-h-[200px] will-change-[opacity] md:shadow-xl dark:shadow-stone-100/10"}
>
<pre
class="ml-0 sm:ml-3 text-sm md:text-base text-black dark:text-white opacity-40">#{tech.order}</pre>
Expand Down

0 comments on commit 6dfec82

Please sign in to comment.