Skip to content

Commit

Permalink
OV-412: - delete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-lacorazza committed Sep 27, 2024
1 parent 967bf3e commit 9a36cad
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions frontend/src/bundles/studio/pages/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
.scrollableContainer {
/* WebKit Browsers */
::-webkit-scrollbar {
width: 12px;
background-color: #f5f5f5; /* Added background color */
background-color: #f5f5f5;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Added box shadow */
border-radius: 10px; /* Added border radius */
background-color: #f5f5f5; /* Added background color */
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px; /* Added border radius */
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Added box shadow */
background-color: #f5f5f5; /* Added background color */
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb:hover {
background: #555;
}

/* Firefox */
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
}

0 comments on commit 9a36cad

Please sign in to comment.