Skip to content

Commit

Permalink
scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
AnWhiteM committed Jun 20, 2024
1 parent 1da9342 commit e561ea4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/AddColumnBtn/AddColumnBtn.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
border: none;
border-radius: 8px;
background: var(--add-column-bg);
width: 334px;
width: 320px;
height: 56px;

}
Expand Down Expand Up @@ -37,3 +37,9 @@
.icon {
stroke: var(--add-plus);
}

@media screen and (min-width: 768px) {
.openModalBtn {
width: 335px;
}
}
4 changes: 4 additions & 0 deletions src/components/TaskList/TaskList.module.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
.taskList {
overflow-x: hidden;
overflow-y: auto;
flex: 1;
max-height: calc(100vh - 348px);
padding-right: 4px;
width: 347px;
margin-bottom: 14px;
height: 100vh

}

.taskList::-webkit-scrollbar {
width: 8px;
height: 20px;

}

.taskList::-webkit-scrollbar-track {
Expand Down

0 comments on commit e561ea4

Please sign in to comment.