style.scss 759 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .add-field-wrapper {
  2. display: flex;
  3. margin-top: 0.5em;
  4. .fields {
  5. flex: 4;
  6. .field-wrapper {
  7. display: flex;
  8. margin-bottom: 0.5em;
  9. align-items: center;
  10. .title {
  11. flex: 1;
  12. text-transform: capitalize;
  13. font-size: 90%;
  14. font-weight: bold;
  15. &::after {
  16. content: ':';
  17. }
  18. }
  19. input,
  20. textarea {
  21. margin: 0 1em;
  22. flex: 2;
  23. }
  24. textarea {
  25. flex: 4;
  26. height: 144px;
  27. resize: none;
  28. }
  29. }
  30. }
  31. .meta {
  32. flex: 1;
  33. }
  34. }