Skip to content

Commit

Permalink
OV-412: * prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-lacorazza committed Sep 26, 2024
1 parent 6f7372b commit 967bf3e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,13 @@ const TimelineView: React.FC<Properties> = ({ playerRef }) => {

return (
<Box
ref={setTimelineRef}
style={{ ...style, overflowX: 'hidden', minWidth: 'max-content', height: '100%' }}
ref={setTimelineRef}
style={{
...style,
overflowX: 'hidden',
minWidth: 'max-content',
height: '100%',
}}
>
<TimeAxis markers={timeAxisMarkers} />
<TimeCursor playerRef={playerRef} />
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/bundles/studio/pages/studio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ const Studio: React.FC = () => {
display="flex"
flexDirection="column"
overflowY={'hidden'}
className={styles['scrollableContainer']}
>
className={styles['scrollableContainer']}
>
<WarningModal
isOpen={isModalOpen}
onClose={handleCloseModal}
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/bundles/studio/pages/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
/* WebKit Browsers */
::-webkit-scrollbar {
width: 12px;
background-color: #F5F5F5; /* Added background color */
background-color: #f5f5f5; /* Added background color */
}

::-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 */
background-color: #f5f5f5; /* Added background color */
}

::-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 */
background-color: #f5f5f5; /* Added background color */
}

::-webkit-scrollbar-thumb:hover {
Expand All @@ -26,4 +26,4 @@
/* Firefox */
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
}
}

0 comments on commit 967bf3e

Please sign in to comment.