From 9a36cad6872b70eee19cdf76be60327959648668 Mon Sep 17 00:00:00 2001 From: stefano-lacorazza <112132737+stefano-lacorazza@users.noreply.github.com> Date: Fri, 27 Sep 2024 03:55:40 -0500 Subject: [PATCH] OV-412: - delete comments --- .../src/bundles/studio/pages/styles.module.css | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/frontend/src/bundles/studio/pages/styles.module.css b/frontend/src/bundles/studio/pages/styles.module.css index 95b75cbfc..411163f11 100644 --- a/frontend/src/bundles/studio/pages/styles.module.css +++ b/frontend/src/bundles/studio/pages/styles.module.css @@ -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; }