Skip to content

Commit

Permalink
Merge pull request #956 from dresandev/boxer-clips-text-overflow
Browse files Browse the repository at this point in the history
fix: boxer clips text overflow hidden on desktop
  • Loading branch information
midudev authored May 18, 2024
2 parents d350291 + e6e171e commit 998b0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BoxerClips.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const hasClips = clips.length > 0

{
hasClips && (
<section class="z-20 mx-auto mt-2 max-w-96 overflow-x-hidden py-5 md:mt-0">
<section class="z-20 mx-auto mt-2 max-w-96 overflow-x-hidden py-5 md:mt-0 md:overflow-x-visible">
<ClipsModal />
<div class="carousel flex select-none flex-row flex-nowrap items-center transition duration-700 md:max-w-none md:!translate-x-0 md:flex-wrap md:place-content-center md:gap-4">
{clips.map(({ text, url }) => (
Expand Down

0 comments on commit 998b0ac

Please sign in to comment.