Skip to content

Commit

Permalink
fix(landing-page): Astro showcase overflowing
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKnaus committed Nov 24, 2023
1 parent 7a86c0c commit 30085bb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/website/src/components/AstroShowcase.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
background-repeat: repeat;
background-position: center;
background-size: 20px 20px;
max-width: 435px;
min-width: 400px;
max-width: 90vw;
overflow: hidden;
padding: 0 2rem;
height: 201px;
border-radius: 5px;
}
Expand All @@ -20,6 +21,7 @@
display: flex;
align-items: center;
height: 56px;
flex-shrink: 0;
background: linear-gradient(180deg, #13151A 0%, rgba(19, 21, 26, 0.88) 100%);
border: 1px solid #343841;
border-radius: 9999px;
Expand All @@ -29,6 +31,7 @@

.dev-bar > button {
display: flex;
flex-shrink: 0;
position: relative;
justify-content: center;
align-items: center;
Expand Down

0 comments on commit 30085bb

Please sign in to comment.