Skip to content

Commit dee6dcf

Browse files
authored
Merge pull request #1595 from CGaneshKumar2002/bug(ui)-added-scroll-bar-to-prevent-overflow
bug(ui): Implemented scroll bar to prevent overflow (#1531)
2 parents bec4d70 + 5aaea34 commit dee6dcf

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

Website/css/Feedback.css

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,18 @@
400400
color: white;
401401
animation: slideInRight 0.3s ease-in-out;
402402
transition: background-color 0.3s ease;
403+
overflow-y: scroll;
403404
}
404-
405+
406+
#languages::-webkit-scrollbar {
407+
width: 20px;
408+
}
409+
410+
#languages::-webkit-scrollbar-track {
411+
background: #121245;
412+
border-radius: 15px;
413+
}
414+
405415
#languages:hover {
406416
background-color: #0D6EFD;
407417
}
@@ -468,8 +478,18 @@
468478
color: white;
469479
animation: slideInRight 1s ease-in-out;
470480
transition: background-color 0.3s ease;
481+
overflow-y: scroll;
471482
}
472483

484+
#milestone::-webkit-scrollbar {
485+
width: 20px;
486+
}
487+
488+
#milestone::-webkit-scrollbar-track {
489+
background: #121245;
490+
border-radius: 15px;
491+
}
492+
473493
#milestone:hover {
474494
background-color: #0D6EFD;
475495
}

Website/css/styles.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,16 @@ div {
421421
color: white;
422422
animation: slideInRight 0.3s ease-in-out;
423423
transition: background-color 0.3s ease;
424+
overflow-y: scroll;
425+
}
426+
427+
#languages::-webkit-scrollbar {
428+
width: 20px;
429+
}
430+
431+
#languages::-webkit-scrollbar-track {
432+
background: #121245;
433+
border-radius: 15px;
424434
}
425435

426436
#languages:hover {
@@ -489,6 +499,16 @@ div {
489499
color: white;
490500
animation: slideInRight 1s ease-in-out;
491501
transition: background-color 0.3s ease;
502+
overflow-y: scroll;
503+
}
504+
505+
#milestone::-webkit-scrollbar {
506+
width: 20px;
507+
}
508+
509+
#milestone::-webkit-scrollbar-track {
510+
background: #121245;
511+
border-radius: 15px;
492512
}
493513

494514
#milestone:hover {

0 commit comments

Comments
 (0)