From f0c03a9b8e15387c4defd0a0e3e0298324406fae Mon Sep 17 00:00:00 2001 From: flu0r1ne Date: Mon, 28 Aug 2023 21:33:44 -0500 Subject: Add wg2nd --- components/utils/inputElementStyle.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 components/utils/inputElementStyle.tsx (limited to 'components/utils/inputElementStyle.tsx') diff --git a/components/utils/inputElementStyle.tsx b/components/utils/inputElementStyle.tsx new file mode 100644 index 0000000..c784e85 --- /dev/null +++ b/components/utils/inputElementStyle.tsx @@ -0,0 +1,16 @@ +import React from 'react'; + +export default { + backgroundColor: '#fff', + border: '1px solid #ced4da', + padding: '0.375rem 0.75rem', + width: '100%', + borderRadius: '0.25rem', + resize: 'vertical', + fontFamily: 'inherit', + margin: '0', + display: 'block', + fontSize: '1em', + boxSizing: 'border-box', + lineHeight: '1.5rem', +} as React.CSSProperties; -- cgit v1.2.3