Skip to content

Commit 23033f7

Browse files
susnuxbackportbot[bot]
authored andcommitted
fix(NcModal): use --border-radius-container
> Currently, the border radius is quite low and eg. the close button doesn't nest nicely within it. > If I see it correctly, with 4px of padding around it, the outer radius should be 12px (8+4). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 1d8bd75 commit 23033f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/NcModal/NcModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ export default {
10621062
display: flex;
10631063
padding: 0;
10641064
transition: transform 300ms ease;
1065-
border-radius: var(--border-radius-large);
1065+
border-radius: var(--border-radius-container, var(--border-radius-rounded));
10661066
background-color: var(--color-main-background);
10671067
color: var(--color-main-text);
10681068
box-shadow: 0 0 40px rgba(0, 0, 0, .2);

0 commit comments

Comments
 (0)