56 lines
776 B
CSS
56 lines
776 B
CSS
.inputField {
|
|
height: 50px;
|
|
}
|
|
|
|
.editButton {
|
|
color: var(--primary);
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.textArea {
|
|
border-radius: 24px;
|
|
margin: 40px 0;
|
|
}
|
|
|
|
.actionButton {
|
|
border-radius: 24px;
|
|
width: 100% !important;
|
|
height: 48px !important;
|
|
}
|
|
|
|
|
|
.backToHomePage {
|
|
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;
|
|
}
|
|
|
|
.backToHomePage :global(.ant-card-body) {
|
|
padding: 0px !important;
|
|
text-align: start;
|
|
width: 100%;
|
|
}
|
|
|
|
.nextIcon {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.backIcon {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.summaryRow {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 16px;
|
|
}
|