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

fix: UI Misalignment and Broken Layout on User Application #919

Merged
merged 5 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
16 changes: 14 additions & 2 deletions applications/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ body {
.application-card .user-info {
display: flex;
flex-direction: column;
gap: 5px;
align-items: flex-start;
gap: 8px;
}

.application-card .user-info * {
Expand All @@ -309,7 +310,6 @@ body {
color: var(--black-color);
font-size: 20px;
font-style: normal;

font-weight: 700;
line-height: normal;
padding-bottom: 8px;
Expand All @@ -320,13 +320,15 @@ body {
font-size: 14px;
font-weight: 600;
line-height: normal;
max-width: 750px;
}

.application-card .user-info .skills {
color: var(--color-gray);
font-size: 13px;
font-weight: 600;
line-height: normal;
max-width: 750px;
}

.hide-overflow {
Expand All @@ -350,6 +352,7 @@ body {
font-size: 16px;
padding: 6px 16px;
margin-left: auto;
margin-top: 5%;
iamitprakash marked this conversation as resolved.
Show resolved Hide resolved
font-weight: 700;
line-height: normal;
cursor: pointer;
Expand Down Expand Up @@ -383,6 +386,7 @@ body {
height: 90vh;
max-width: 600px;
overflow-y: hidden;
z-index: 1;
display: flex;
flex-direction: column;
position: fixed;
Expand Down Expand Up @@ -666,4 +670,12 @@ body {
.application-card {
width: 90%;
}

.application-card .user-info .skills {
max-width: 100%;
}

.application-card .user-info .company-name {
max-width: 100%;
}
}
1 change: 0 additions & 1 deletion global.css
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ body {
.footer {
width: 100vw;
text-align: center;
position: fixed;
iamitprakash marked this conversation as resolved.
Show resolved Hide resolved
bottom: 4px;
}

Expand Down