Changed link colour to cyan and changed cards to be same w and h, with centered text
This commit is contained in:
parent
b62f2611ea
commit
ac8d7936da
@ -9,7 +9,7 @@ const Card: Component<CardProps> = ({ children, className, title, to, newTab = f
|
||||
<>
|
||||
<Link className={ "text-white" } to={ to } newTab={ newTab }>
|
||||
<div
|
||||
class={ `relative bg-gradient-to-r from-cyan-600 to-cyan-500 min-w-64 rounded-2xl ${ className }` }>
|
||||
class={ `relative bg-gradient-to-r from-cyan-600 to-cyan-500 h-32 w-64 rounded-2xl ${ className }` }>
|
||||
<div class="relative p-5">
|
||||
<H3 className={ "text-center" }>{ title }</H3>
|
||||
{ children }
|
||||
|
@ -10,7 +10,7 @@
|
||||
}
|
||||
|
||||
.link {
|
||||
@apply hover:underline text-blue-500;
|
||||
@apply hover:underline text-cyan-500;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ const HomePage: Component = () => {
|
||||
<div class={ "flex flex-wrap justify-center mt-10" }>
|
||||
<For each={ cards }>
|
||||
{ card =>
|
||||
<Card title={ card.title } className={ "m-4" } to={ card.to }>{ card.children }</Card>
|
||||
<Card title={ card.title } className={ "m-4 text-center" } to={ card.to }>{ card.children }</Card>
|
||||
}
|
||||
</For>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user