Skip to content

Commit e6f11f2

Browse files
committed
fix: remove border radius from display components to support custom styling in downstream apps
1 parent 523cb22 commit e6f11f2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "use-vibes",
3-
"version": "0.4.14",
3+
"version": "0.4.15",
44
"type": "module",
55
"description": "Transform any DOM element into an AI-powered micro-app",
66
"main": "dist/index.js",

src/components/ImgGen.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
.imggen-root {
4242
position: relative;
4343
max-width: 100%;
44-
border-radius: var(--imggen-border-radius);
44+
/* No border-radius to allow downstream apps to set their own */
4545
overflow: hidden;
4646
}
4747

@@ -57,7 +57,7 @@
5757
position: relative;
5858
width: 100%;
5959
overflow: hidden;
60-
border-radius: var(--imggen-border-radius);
60+
/* No border-radius to allow downstream apps to set their own */
6161
}
6262

6363
/* Expand button in upper left corner */
@@ -109,7 +109,7 @@
109109
width: 100%;
110110
height: auto;
111111
display: block;
112-
border-radius: var(--imggen-border-radius);
112+
/* No border-radius to allow downstream apps to set their own */
113113
}
114114

115115
/* ---- Overlays ---- */

0 commit comments

Comments
 (0)