Skip to content

Commit

Permalink
Merge pull request #1595 from CGaneshKumar2002/bug(ui)-added-scroll-b…
Browse files Browse the repository at this point in the history
…ar-to-prevent-overflow

bug(ui): Implemented scroll bar to prevent overflow (#1531)
  • Loading branch information
sanjay-kv authored Oct 30, 2024
2 parents bec4d70 + 5aaea34 commit dee6dcf
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
22 changes: 21 additions & 1 deletion Website/css/Feedback.css
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,18 @@
color: white;
animation: slideInRight 0.3s ease-in-out;
transition: background-color 0.3s ease;
overflow-y: scroll;
}


#languages::-webkit-scrollbar {
width: 20px;
}

#languages::-webkit-scrollbar-track {
background: #121245;
border-radius: 15px;
}

#languages:hover {
background-color: #0D6EFD;
}
Expand Down Expand Up @@ -468,8 +478,18 @@
color: white;
animation: slideInRight 1s ease-in-out;
transition: background-color 0.3s ease;
overflow-y: scroll;
}

#milestone::-webkit-scrollbar {
width: 20px;
}

#milestone::-webkit-scrollbar-track {
background: #121245;
border-radius: 15px;
}

#milestone:hover {
background-color: #0D6EFD;
}
Expand Down
20 changes: 20 additions & 0 deletions Website/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,16 @@ div {
color: white;
animation: slideInRight 0.3s ease-in-out;
transition: background-color 0.3s ease;
overflow-y: scroll;
}

#languages::-webkit-scrollbar {
width: 20px;
}

#languages::-webkit-scrollbar-track {
background: #121245;
border-radius: 15px;
}

#languages:hover {
Expand Down Expand Up @@ -489,6 +499,16 @@ div {
color: white;
animation: slideInRight 1s ease-in-out;
transition: background-color 0.3s ease;
overflow-y: scroll;
}

#milestone::-webkit-scrollbar {
width: 20px;
}

#milestone::-webkit-scrollbar-track {
background: #121245;
border-radius: 15px;
}

#milestone:hover {
Expand Down

0 comments on commit dee6dcf

Please sign in to comment.