Skip to content

Commit fda715b

Browse files
feat: replaced overflow hidden with overflow clip in styles panel (#4203)
1 parent 475970d commit fda715b

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

apps/builder/app/builder/features/style-panel/sections/size/size.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import {
1515
ScrollIcon,
1616
AutoScrollIcon,
1717
EllipsesIcon,
18+
CropIcon,
1819
} from "@webstudio-is/icons";
1920
import { StyleSection } from "../../shared/style-section";
2021
import { theme } from "@webstudio-is/design-system";
@@ -121,10 +122,10 @@ export const Section = () => {
121122
value: "visible",
122123
},
123124
{
124-
child: <EyeClosedIcon />,
125+
child: <CropIcon />,
125126
description:
126127
"Content that exceeds the container's size is clipped and hidden without scrollbars.",
127-
value: "hidden",
128+
value: "clip",
128129
},
129130
{
130131
child: <ScrollIcon />,

packages/icons/icons/crop.svg

+11
Loading

packages/icons/src/__generated__/components.tsx

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/icons/src/__generated__/svg.ts

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)