Skip to content

Commit

Permalink
fix card size
Browse files Browse the repository at this point in the history
  • Loading branch information
mudkipdev committed May 9, 2024
1 parent e25d1eb commit a41935d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/components/Card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,21 @@ const { title, description, url } = Astro.props

<style>
.card {
background-color: var(--mantle);
padding: 1em;
max-width: 30em;
height: 4em;
display: flex;
justify-content: center;
flex-direction: column;
justify-content: center;

padding: 1em;
max-width: 30em;
background-color: var(--mantle);
border-radius: 0.5em;
}

.card * {
margin: 0;
font-size: 0.85em;
}

.card a {
color: var(--text);
font-size: 1.25em;
Expand Down

0 comments on commit a41935d

Please sign in to comment.