Skip to content

Commit 35a6ec8

Browse files
author
Hector Arce De Las Heras
committed
Changed align-items property in carousel from center to stretch
This commit includes a modification to the carousel component's CSS. The align-items property has been changed from 'center' to 'stretch'. This change allows the items in the carousel to fill the full height of the container, providing a more uniform appearance.
1 parent 86d930c commit 35a6ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/carousel/carousel.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const CarouselContentStyled = styled.div<{
5454
left: 0;
5555
display: flex;
5656
flex-direction: row;
57-
align-items: center;
57+
align-items: stretch;
5858
> * {
5959
flex-shrink: 0;
6060
}

0 commit comments

Comments
 (0)