123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .stepsHeader {
- @apply flex items-center px-6 py-6;
- color: #344054;
- font-weight: 600;
- font-size: 14px;
- line-height: 20px;
- }
- .navBack {
- @apply box-border flex justify-center items-center mr-3 w-8 h-8 bg-white bg-center bg-no-repeat cursor-pointer hover:border-gray-300;
- border: 0.5px solid #F2F4F7;
- box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
- border-radius: 32px;
- background-image: url(../assets/arrow-narrow-left.svg);
- background-size: 16px;
- }
- .stepList {
- @apply p-4 relative;
- line-height: 18px;
- }
- .stepItem {
- @apply relative flex justify-items-start pt-3 pr-0 pb-3 box-content;
- padding-left: 52px;
- font-size: 13px;
- height: 18px;
- }
- .stepItem.step1::before {
- content: '';
- position: absolute;
- bottom: 0;
- left: 23px;
- width: 2px;
- height: 7px;
- background-color: #f2f4f7;
- }
- .stepItem.step2::before {
- content: '';
- position: absolute;
- top: 0;
- left: 23px;
- width: 2px;
- height: 100%;
- background-color: #f2f4f7;
- }
- .stepItem.step2::after {
- content: '';
- position: absolute;
- top: 6px;
- left: 23px;
- width: 2px;
- height: 28px;
- background-color: #fff;
- }
- .stepItem.step3::before {
- content: '';
- position: absolute;
- top: 0;
- left: 23px;
- width: 2px;
- height: 7px;
- background-color: #f2f4f7;
- }
- .stepNum {
- @apply box-border absolute top-2 left-3 flex justify-center items-center w-6 h-6;
- color: #98a2b3;
- font-size: 12px;
- border: 1px solid #F2F4F7;
- border-radius: 24px;
- z-index: 1;
- }
- .stepName {
- color: #98a2b3;
- }
- .stepItem.active .stepNum {
- color: #1c64f2;
- background-color: #EFF4FF;
- border: none;
- }
- .stepItem.active .stepName {
- color: #1c64f2;
- }
- .stepItem.done .stepNum {
- color: #667085;
- background-color: #f2f4f7;
- border: none;
- }
- .stepItem.done .stepNum::after {
- content: '';
- display: flex;
- width: 12px;
- height: 12px;
- background: center no-repeat url(../assets/check.svg);
- background-size: 12px;
- }
- .stepItem.done .stepName {
- color: #667085;
- }
|