Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
akku1139 authored Feb 21, 2024
1 parent fae09b9 commit 9bfdde6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ArticleCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const { title, link, poster_name, poster_icon_url, tag, thumb_bg }: Props = Astr
---

<a href={link} class="no-underline">
<div class="p-4"> {" drop-shadow-xl" /*一旦影には消えてもらって*/}
<div class="p-4">
<div class={`aspect-oblong sms:aspect-square sm:aspect-oblong rounded-t-xl relative p-0 flex items-center justify-center border border-1 border-gray-400 ${thumb_bg}`}>
<slot />
{(tag !== undefined) &&
Expand Down
2 changes: 1 addition & 1 deletion src/components/ServiceIcon.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Props = {
const { link, imgSrc, name }: Props = Astro.props;
---

<a href={link} class="text-center m-2">
<a href={link} class="text-center m-2 items-center">
<img src={imgSrc} alt={name} class="h-20" />
{name}
</a>

0 comments on commit 9bfdde6

Please sign in to comment.