Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css fix #1399

Merged
merged 3 commits into from
Sep 18, 2024
Merged

css fix #1399

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,11 @@
text-align: center;
}

.sandbox-signup-form .digit-field .digit-error-message {
font-size: 0.8rem;
}


.sandbox-signup-form {
.digit-employee-card.signupCardClassName {
display: flex;
Expand Down Expand Up @@ -344,3 +349,25 @@
}
}
}
.pgr-citizen-wrapper{
.applications-list-container{
.card{
.date-wrap{
align-items: center;
justify-content: flex-start;
}
Comment on lines +352 to +358
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add display: flex; to .date-wrap for alignment properties to take effect

The align-items and justify-content properties only apply to flex containers. To ensure proper alignment of .date-wrap, add display: flex;.

Apply this diff to fix the issue:

 .pgr-citizen-wrapper{
   .applications-list-container{
     .card{
       .date-wrap{
+        display: flex;
         align-items: center;
         justify-content: flex-start;
       }
     }
   }
 }
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
.pgr-citizen-wrapper{
.applications-list-container{
.card{
.date-wrap{
align-items: center;
justify-content: flex-start;
}
.pgr-citizen-wrapper{
.applications-list-container{
.card{
.date-wrap{
display: flex;
align-items: center;
justify-content: flex-start;
}

}
}
}

.pgr-citizen-wrapper{
.applications-list-container{
.card{
.status-highlight{
display: flex;
align-items: center;
justify-content: center;
}
}
}
}