| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .add-field-wrapper {
- display: flex;
- margin-top: 0.5em;
- .fields {
- flex: 4;
- .field-wrapper {
- display: flex;
- margin-bottom: 0.5em;
- align-items: center;
- .title {
- flex: 1;
- text-transform: capitalize;
- font-size: 90%;
- font-weight: bold;
- &::after {
- content: ':';
- }
- }
- input,
- textarea {
- margin: 0 1em;
- flex: 2;
- }
- textarea {
- flex: 4;
- height: 144px;
- resize: none;
- }
- }
- }
- .meta {
- flex: 1;
- }
- }
|