Skip to content

Commit

Permalink
updated job-details page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiran Biradar committed Aug 12, 2024
1 parent 7307624 commit 1e67826
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions public/assets/css/job-details.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
background-color: white;
}

.job-details-page {
Expand All @@ -13,13 +13,16 @@ body {

/* Left Sidebar */
.sidebar-left {
width: 25%;
background-color: #333;
color: #fff;
width: 20%;
background-color: #f2f2f2;
color: black;
padding: 20px;
position: fixed;
height: 100%;
position: sticky;
top: 70px;
height: 600px;
overflow-y: auto;
border-radius: 20px;
margin: 10px;
}

.sidebar-left h2 {
Expand All @@ -39,6 +42,8 @@ body {
.sidebar-left ul {
list-style: none;
padding: 0;
display: flex;
flex-direction: column !important;
}

.sidebar-left ul li {
Expand All @@ -51,7 +56,6 @@ body {

/* Right Section - Job Details */
.job-details-section {
margin-left: 25%;
width: 75%;
padding: 20px;
overflow-y: auto;
Expand Down

0 comments on commit 1e67826

Please sign in to comment.