this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix textarea styles leaked to other textareas

+12 -9
+11 -9
src/components/compose.css
··· 136 136 line-height: 1.4; 137 137 border-color: transparent; 138 138 139 - @media (width < 30em) { 140 - margin-inline: calc(-1 * var(--form-padding-inline)); 141 - width: 100vw !important; 142 - max-width: 100vw; 143 - border-radius: 0; 144 - border: 0; 145 - } 139 + &.compose-field { 140 + @media (width < 30em) { 141 + margin-inline: calc(-1 * var(--form-padding-inline)); 142 + width: 100vw !important; 143 + max-width: 100vw; 144 + border-radius: 0; 145 + border: 0; 146 + } 146 147 147 - @media (min-width: 40em) { 148 - max-height: 65vh; 148 + @media (min-width: 40em) { 149 + max-height: 65vh; 150 + } 149 151 } 150 152 } 151 153 #compose-container textarea:hover {
+1
src/components/compose.jsx
··· 1417 1417 return ( 1418 1418 <text-expander ref={textExpanderRef} keys="@ # :"> 1419 1419 <textarea 1420 + class="compose-field" 1420 1421 autoCapitalize="sentences" 1421 1422 autoComplete="on" 1422 1423 autoCorrect="on"