Fix overlapping long form text borders

This commit is contained in:
Andrew Kingston 2023-03-31 20:35:29 +01:00
parent fcb8b9e9b1
commit a50e9ccbc7
1 changed files with 2 additions and 3 deletions

View File

@ -83,7 +83,7 @@
textarea { textarea {
padding: var(--cell-padding); padding: var(--cell-padding);
margin: 0; margin: 0;
border: none; border: 2px solid var(--spectrum-global-color-blue-400);
background: var(--cell-background); background: var(--cell-background);
font-size: var(--cell-font-size); font-size: var(--cell-font-size);
font-family: var(--font-sans); font-family: var(--font-sans);
@ -93,8 +93,7 @@
left: -1px; left: -1px;
width: calc(100% + 100px); width: calc(100% + 100px);
height: calc(5 * var(--row-height) + 1px); height: calc(5 * var(--row-height) + 1px);
border: var(--cell-border); z-index: 1;
box-shadow: inset 0 0 0 2px var(--spectrum-global-color-blue-400);
} }
textarea.invert { textarea.invert {
transform: translateY(-100%); transform: translateY(-100%);