Skip to content

Commit

Permalink
fix(FullScreen): ensure the content is scrollable
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeraS committed Nov 28, 2024
1 parent 14b96e7 commit e670135
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion src/components/Fullscreen/Fullscreen.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.ydb-fullscreen {
display: flex;
overflow: hidden;
flex-grow: 1;

Expand All @@ -25,4 +24,12 @@
&_fullscreen &__close-button {
display: block;
}

&__content {
display: flex;
overflow: auto;

width: 100%;
height: 100%;
}
}
2 changes: 1 addition & 1 deletion src/components/Fullscreen/Fullscreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function Fullscreen({children, className}: FullscreenProps) {
>
<Icon data={disableFullscreenIcon} />
</Button>
{children}
<div className={b('content')}>{children}</div>
</div>
</Portal>
</div>
Expand Down

0 comments on commit e670135

Please sign in to comment.