1
0
Fork 0
mirror of synced 2024-09-03 03:01:14 +12:00

Fix border radius

This commit is contained in:
Andrew Kingston 2024-03-28 18:30:41 +00:00
parent 46fa157dea
commit ca1e1149bf

View file

@ -82,6 +82,12 @@
</div> </div>
<style> <style>
.link-configuration :global(.list-wrap > li:last-child),
.link-configuration :global(.list-wrap) {
border-bottom-left-radius: unset;
border-bottom-right-radius: unset;
border-bottom: none;
}
.list-footer { .list-footer {
width: 100%; width: 100%;
border-bottom-left-radius: 4px; border-bottom-left-radius: 4px;
@ -94,12 +100,8 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
border: 1px solid var(--spectrum-alias-border-color-mid); border: 1px solid var(--spectrum-alias-border-color-mid);
border-top: none;
cursor: pointer; cursor: pointer;
} }
.list-footer.empty {
border-top: 1px solid var(--spectrum-alias-border-color-mid);
}
.list-footer.empty { .list-footer.empty {
border-radius: 4px; border-radius: 4px;
} }