diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..e4d5e97 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,76 @@ + + + + \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c4765d1..d002f34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Contact mediums are build programmatically +- Contact mediums have border radius to fit the site homogeneity + +### Fixed +- Fixed few styles on techs ## [0.1.0] - 2023-11-28 ### Added diff --git a/src/components/CardTech.astro b/src/components/CardTech.astro index 6a02c91..173fb94 100644 --- a/src/components/CardTech.astro +++ b/src/components/CardTech.astro @@ -2,16 +2,16 @@ const { tech } = Astro.props; import { Image } from 'astro:assets' -let imgClass = "w-[50%] sm:w-[35%] h-auto self-center sm:self-left m-3"; +let imgClass = "w-[35%] lg:w-[45%] h-auto self-center sm:self-left sm:m-3"; imgClass = tech.invertOnDark ? imgClass + " dark:invert" : imgClass; ---
#{tech.order}
+ class="ml-0 sm:ml-3 text-sm md:text-base text-black dark:text-white opacity-40">#{tech.order} -

- {tech.name} -

+

{tech.name}