Skip to content

Commit

Permalink
Merge pull request #10 from Kiran-Biradar/main - company dashboard ui…
Browse files Browse the repository at this point in the history
… update

fixed company-d layout
  • Loading branch information
once-human authored Aug 12, 2024
2 parents 2251cdb + 677325d commit 1ae0dfa
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions public/assets/css/company-d.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;
}

.company-dashboard {
Expand All @@ -12,13 +12,16 @@ body {

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

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

.sidebar-left nav ul li {
margin: 20px 0;
}

.sidebar-left nav ul li a {
color: #fff;
color: black;
text-decoration: none;
font-size: 18px;
}
Expand All @@ -57,7 +62,6 @@ body {

/* Main Content Section */
.main-content {
margin-left: 25%;
width: 75%;
padding: 20px;
}
Expand All @@ -73,11 +77,10 @@ body {
.dashboard-overview {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.overview-card {
width: 23%;
width: 20%;
background-color: #007bff;
color: #fff;
padding: 20px;
Expand Down

0 comments on commit 1ae0dfa

Please sign in to comment.