46 lines
733 B
SCSS
46 lines
733 B
SCSS
.voucher {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 5vh;
|
|
max-width: 70vw;
|
|
p.pageTitle{
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.itemCard{
|
|
background-color: #eee;
|
|
border: #ccc 1px solid;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.imageCard{
|
|
width: 120px;
|
|
max-height: 60px;
|
|
}
|
|
|
|
.titleCard{
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
margin-bottom: -10px;
|
|
}
|
|
|
|
.ant-carousel .slick-slide {
|
|
text-align: center;
|
|
height: 160px;
|
|
line-height: 160px;
|
|
background: #364d79;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ant-carousel .slick-slide h3 {
|
|
color: #fff;
|
|
}
|
|
|
|
}
|