fix modal border

This commit is contained in:
wxiaoguang 2024-04-27 18:08:17 +08:00
parent 2cdda417ce
commit 7a832ef248
2 changed files with 2 additions and 4 deletions

View File

@ -435,10 +435,6 @@ a.label,
box-shadow: 1px 1px 0 0 var(--color-secondary); box-shadow: 1px 1px 0 0 var(--color-secondary);
} }
.ui.modal .actions {
border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.ui.comments .comment .text { .ui.comments .comment .text {
margin: 0; margin: 0;
} }

View File

@ -54,6 +54,7 @@ These inconsistent layouts should be refactored to simple ones.
.ui.modal form > .content { .ui.modal form > .content {
padding: 1.5em; padding: 1.5em;
background: var(--color-body); background: var(--color-body);
border-radius: 0 0 var(--border-radius) var(--border-radius);
} }
.ui.modal > .actions, .ui.modal > .actions,
@ -63,6 +64,7 @@ These inconsistent layouts should be refactored to simple ones.
border-color: var(--color-secondary); border-color: var(--color-secondary);
padding: 1rem; padding: 1rem;
text-align: right; text-align: right;
border-radius: 0 0 var(--border-radius) var(--border-radius);
} }
.ui.modal .content > .actions { .ui.modal .content > .actions {