Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
fix: timeline width exceeding browser width (#316)
Browse files Browse the repository at this point in the history
* fix timeline width

* Revert change back
  • Loading branch information
KaWaite committed Sep 17, 2022
1 parent 9596c57 commit c6dbb30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/atoms/Timeline/ScaleList.tsx
Expand Up @@ -58,7 +58,8 @@ const ScaleListInner: React.FC<ScaleListInnerProps> = memo(function ScaleListPre

const ScaleContainer = styled.div`
display: flex;
min-width: 100%;
width: 0;
height: 30px;
align-items: flex-end;
will-change: auto;
Expand Down
2 changes: 1 addition & 1 deletion src/components/atoms/Timeline/index.tsx
Expand Up @@ -103,7 +103,7 @@ const Timeline: React.FC<Props> = memo(function TimelinePresenter({
</li>
<li>
<InputRangeLabel>
<InputRangeLabelText size="xs">{speed}X</InputRangeLabelText>
<InputRangeLabelText size="xs">{speed}x</InputRangeLabelText>
<InputRange
publishedTheme={publishedTheme}
type="range"
Expand Down
1 change: 0 additions & 1 deletion src/components/organisms/GlobalModal/index.tsx
Expand Up @@ -39,7 +39,6 @@ const GlobalModal: React.FC = () => {
theme={currentTheme}
accessToken={accessToken}
onLogOut={logout}
show
onNotificationChange={handleNotificationChange}
/>
))}
Expand Down

0 comments on commit c6dbb30

Please sign in to comment.