diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-05-30 21:11:40 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2026-02-20 15:13:00 -0500 |
| commit | 16baa822cc897fa8764c14861f7869f46ca50e30 (patch) | |
| tree | a970198a53dd4449ed8702d90433fda787075bcd /components/utils/inputElementStyle.tsx | |
| parent | 56a2f28565244127bb91ebabac731eaef950f3ec (diff) | |
Compress results gif
Diffstat (limited to 'components/utils/inputElementStyle.tsx')
| -rw-r--r-- | components/utils/inputElementStyle.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
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; |
