Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/CategoriesCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function CategoriesCard({ categories }: CategoriesCardProps) {
<Link
key={c.uri}
href={`/${c.uri}`}
className="border-2 no-underline border-ssw-red text-ssw-red py-1 px-2 rounded-xs font-semibold hover:text-white hover:bg-ssw-red transition-colors duration-200"
className="border no-underline border-ssw-red text-ssw-red py-1 px-2 rounded-xs font-semibold hover:text-white hover:bg-ssw-red transition-colors duration-200"
// @ts-expect-error tinacms types are wrong
data-tina-field={tinaField(categories?.[index], "category")}
>
Expand Down
2 changes: 1 addition & 1 deletion components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type CardProps = {

export function Card({ children,title,dropShadow, className = "" }: CardProps) {
return (
<div className={`border-2 border-border rounded-sm p-4 bg-card ${dropShadow?'drop-shadow-lg':''} ${className}`}>
<div className={`border border-border rounded-sm p-4 bg-card ${dropShadow?'drop-shadow-lg':''} ${className}`}>
{title && <h3 className="mt-0 text-lg">{title}</h3>}
{children}
</div>
Expand Down