Increase size on Last components

This commit is contained in:
itsfinniii
2026-03-28 15:42:04 +01:00
parent ad25836de7
commit 8afacdbe7a
4 changed files with 3 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
--- ---
import { getImageUrl } from '@/lib/images';
import { markdownToHtml } from '@/lib/markdown'; import { markdownToHtml } from '@/lib/markdown';
import { Image } from 'astro:assets'; import { Image } from 'astro:assets';

View File

@@ -35,7 +35,7 @@ const size = calculateSizeClasses(albums.amount, lastAlbums.length);
<div> <div>
<a <a
href={settings.photo.categoryIndex.indexRouteTemplate} href={settings.photo.categoryIndex.indexRouteTemplate}
class="text-(--ptt) bg-(--ptc) hover:text-(--stt) hover:bg-(--stc) duration-200 py-3 px-4 rounded-full" class="text-(--ptt) bg-(--ptc) hover:text-(--stt) hover:bg-(--stc) duration-200 py-3 px-5 rounded-full text-lg"
> >
{albums.readMoreButtonText} {albums.readMoreButtonText}
</a> </a>

View File

@@ -35,7 +35,7 @@ const size = calculateSizeClasses(blogs.amount, lastBlogs.length);
<div> <div>
<a <a
href={settings.blog.indexRouteTemplate} href={settings.blog.indexRouteTemplate}
class="text-(--ptt) bg-(--ptc) hover:text-(--stt) hover:bg-(--stc) duration-200 py-3 px-4 rounded-full" class="text-(--ptt) bg-(--ptc) hover:text-(--stt) hover:bg-(--stc) duration-200 py-3 px-5 rounded-full text-lg"
> >
{blogs.readMoreButtonText} {blogs.readMoreButtonText}
</a> </a>

View File

@@ -35,7 +35,7 @@ const size = calculateSizeClasses(projects.amount, lastProjects.length);
<div> <div>
<a <a
href={settings.project.indexRouteTemplate} href={settings.project.indexRouteTemplate}
class="text-(--ptt) bg-(--ptc) hover:text-(--stt) hover:bg-(--stc) duration-200 py-3 px-4 rounded-full" class="text-(--ptt) bg-(--ptc) hover:text-(--stt) hover:bg-(--stc) duration-200 py-3 px-5 rounded-full text-lg"
> >
{projects.readMoreButtonText} {projects.readMoreButtonText}
</a> </a>