feat: adjust align on wider images

This commit is contained in:
Zamitto 2024-09-19 15:38:20 -03:00
parent 9791c311f1
commit e526c0f650

View File

@ -19,6 +19,7 @@ export const gallerySliderMedia = style({
flexGrow: "0", flexGrow: "0",
transition: "translate 0.3s ease-in-out", transition: "translate 0.3s ease-in-out",
borderRadius: "4px", borderRadius: "4px",
alignSelf: "center",
}); });
export const gallerySliderAnimationContainer = style({ export const gallerySliderAnimationContainer = style({
@ -60,7 +61,6 @@ export const mediaPreviewButton = recipe({
base: { base: {
cursor: "pointer", cursor: "pointer",
width: "20%", width: "20%",
height: "20%",
display: "block", display: "block",
flexShrink: "0", flexShrink: "0",
flexGrow: "0", flexGrow: "0",
@ -84,7 +84,6 @@ export const mediaPreviewButton = recipe({
export const mediaPreview = style({ export const mediaPreview = style({
width: "100%", width: "100%",
height: "100%",
display: "flex", display: "flex",
}); });