feat: only center textarea placeholder text and not value in sessioninput

pull/3083/head
William Grant 11 months ago
parent 94abe60af1
commit 4ae133bb67

@ -16,8 +16,6 @@ import { SessionWrapperModal } from '../SessionWrapperModal';
const StyledInputContainer = styled(Flex)` const StyledInputContainer = styled(Flex)`
textarea { textarea {
position: unset;
top: unset;
overflow: hidden; overflow: hidden;
} }
`; `;

@ -89,6 +89,7 @@ const StyledInput = styled(motion.input)<{
`; `;
const StyledTextAreaContainer = styled(motion.div)<{ const StyledTextAreaContainer = styled(motion.div)<{
noValue: boolean;
error: boolean; error: boolean;
centerText?: boolean; centerText?: boolean;
textSize?: TextSizes; textSize?: TextSizes;
@ -119,9 +120,10 @@ const StyledTextAreaContainer = styled(motion.div)<{
border: none; border: none;
background: transparent; background: transparent;
position: absolute; ${props =>
top: ${props => props.noValue &&
props.textSize ? `calc(var(--font-size-${props.textSize}) + 5px)` : 'calc(12px + 5px)'}; `position: absolute;
top: ${props.textSize ? `calc(var(--font-size-${props.textSize}) + 5px)` : 'calc(12px + 5px)'};`}
resize: none; resize: none;
overflow-wrap: break-word; overflow-wrap: break-word;
@ -306,6 +308,7 @@ export const SessionInput = (props: Props) => {
}; };
const containerProps = { const containerProps = {
noValue: isEmpty(value),
error: Boolean(error), error: Boolean(error),
centerText, centerText,
textSize, textSize,

@ -54,6 +54,7 @@ const StyledButtonerContainer = styled.div`
const StyledInputContainer = styled(Flex)` const StyledInputContainer = styled(Flex)`
textarea { textarea {
position: absolute;
top: 8px; top: 8px;
} }
`; `;

Loading…
Cancel
Save