New.styled.ts 302 B

123456789101112131415161718192021
  1. import styled from 'styled-components';
  2. export const Form = styled.form`
  3. padding: 16px;
  4. padding-top: 0;
  5. display: flex;
  6. flex-direction: column;
  7. gap: 16px;
  8. width: 50%;
  9. & > button {
  10. align-self: flex-start;
  11. }
  12. & textarea {
  13. height: 200px;
  14. }
  15. & select {
  16. width: 30%;
  17. }
  18. `;