Skip to content

Commit

Permalink
refactor: Remove padding-top from header in base.css and adjust main-…
Browse files Browse the repository at this point in the history
…content margin in dashboard.html

The padding-top property in the header section of base.css has been removed to improve the layout. Additionally, the margin-left property in the main-content section of dashboard.html has been adjusted to make room for the sidebar. These changes enhance the user experience by optimizing the spacing and alignment of elements.
  • Loading branch information
QA2A committed Sep 4, 2024
1 parent 81ea273 commit b4a0c70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion website/static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ header {
display: flex;
flex-direction: column;
align-items: center;
padding-top:20px;
/* padding-top:20px; */
}

.job-stats {
Expand Down
4 changes: 4 additions & 0 deletions website/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,10 @@
z-index: 1;
}

.main-content {
margin-left: 180px; /* Make room for the sidebar */
}

</style>

<div class="main-content">
Expand Down

0 comments on commit b4a0c70

Please sign in to comment.