35 lines
510 B
CSS
35 lines
510 B
CSS
.homeServiceCard {
|
|
width: 100%;
|
|
height: 48px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
padding: 12px 18px !important;
|
|
row-gap: 10px;
|
|
transition: all 0.3s ease;
|
|
border-radius: 50px;
|
|
background-color: rgba(234, 31, 34, 0.04);
|
|
color: #ea1f22;
|
|
}
|
|
|
|
.homeServiceCard :global(.ant-card-body) {
|
|
padding: 0px !important;
|
|
text-align: start;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
.serviceIcon path {
|
|
stroke: #ea1f22;
|
|
}
|
|
|
|
.nextIcon {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.backIcon {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|