mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Overflow hidden for layout
This commit is contained in:
parent
10c6dfed85
commit
de164c0846
1 changed files with 2 additions and 0 deletions
|
|
@ -230,6 +230,7 @@ function Layout({
|
|||
backgroundImage: `url(${image.imgUrl})`,
|
||||
width: image.w,
|
||||
height: image.h,
|
||||
overflow: "hidden",
|
||||
// TODO: This combo of height/minHeight ect is a bit odd. How should we combine these?
|
||||
minWidth: minimum_w == null ? null : Number(minimum_w),
|
||||
minHeight: minimum_h == null ? null : Number(minimum_h),
|
||||
|
|
@ -266,6 +267,7 @@ function Layout({
|
|||
draggable={false}
|
||||
style={{
|
||||
position: "absolute",
|
||||
overflow: "hidden",
|
||||
...params,
|
||||
}}
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue