Add slight border radius to cells which were missing it

This commit is contained in:
Andrew Kingston 2023-06-16 14:54:50 +01:00
parent 9e881d071b
commit 8fc29cb6dc
3 changed files with 6 additions and 0 deletions

View File

@ -142,6 +142,8 @@
border: var(--cell-border);
padding: var(--cell-padding);
box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.15);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.dropzone.invertX {
left: auto;

View File

@ -223,6 +223,8 @@
overflow-y: auto;
border: var(--cell-border);
box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.15);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.options.invertX {
left: auto;

View File

@ -460,6 +460,8 @@
flex-direction: column;
align-items: stretch;
padding: 0 0 8px 0;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
.dropdown.invertY {
transform: translateY(-100%);