chore: use monorepo organization

This commit is contained in:
Rafael Taranto 2025-05-12 10:52:54 +01:00
parent deaf7d6ecc
commit a687827f7e
1099 changed files with 8184 additions and 11535 deletions

View file

@ -0,0 +1,45 @@
.carouselContainer {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100%;
box-sizing: border-box;
}
.imageContainer {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
height: 100%;
overflow: hidden;
max-width: 80%;
}
.image {
object-fit: contain;
object-position: center;
width: 100%;
height: 100%;
margin-bottom: 40px;
}
.navButton {
background-color: transparent;
border: none;
border-radius: 0;
color: transparent;
opacity: 1;
cursor: pointer;
padding: 8px;
min-width: 44px;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.navButton:hover {
background-color: rgba(0, 0, 0, 0.04);
}