From 4d95adf62a05516aaaad14d8e72d80e1aef28921 Mon Sep 17 00:00:00 2001 From: vamsisai Date: Tue, 19 Nov 2024 21:04:48 +0530 Subject: [PATCH 1/2] fix: UI Misalignment and Broken Layout on User Application --- applications/style.css | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/applications/style.css b/applications/style.css index 33f8bc66..3b8fe894 100644 --- a/applications/style.css +++ b/applications/style.css @@ -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 * { @@ -309,7 +310,6 @@ body { color: var(--black-color); font-size: 20px; font-style: normal; - font-weight: 700; line-height: normal; padding-bottom: 8px; @@ -320,6 +320,7 @@ body { font-size: 14px; font-weight: 600; line-height: normal; + max-width: 750px; } .application-card .user-info .skills { @@ -327,6 +328,7 @@ body { font-size: 13px; font-weight: 600; line-height: normal; + max-width: 750px; } .hide-overflow { @@ -350,6 +352,7 @@ body { font-size: 16px; padding: 6px 16px; margin-left: auto; + margin-top: 5%; font-weight: 700; line-height: normal; cursor: pointer; @@ -383,6 +386,7 @@ body { height: 90vh; max-width: 600px; overflow-y: hidden; + z-index: 1; display: flex; flex-direction: column; position: fixed; @@ -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%; + } } From ff971ea22b4e84bccc7dede28b9857f9dc156a49 Mon Sep 17 00:00:00 2001 From: Vamsi Sai <39260099+vamsi4845@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:02:46 +0530 Subject: [PATCH 2/2] fix: footer position issue --- global.css | 1 - 1 file changed, 1 deletion(-) diff --git a/global.css b/global.css index 70d6bbae..b2e421a0 100644 --- a/global.css +++ b/global.css @@ -176,7 +176,6 @@ body { .footer { width: 100vw; text-align: center; - position: fixed; bottom: 4px; }