complaint-card.scss 897 B

12345678910111213141516
  1. @use '../../styles/_ios-theme.scss' as *;
  2. :host { display: block; height: 100%; }
  3. .complaint-card {
  4. h4 { margin: 0; font-size: $ios-font-size-sm; font-weight: $ios-font-weight-semibold; color: $ios-text-primary; padding-bottom: $ios-spacing-xs; border-bottom: 1px solid $ios-border; }
  5. .items { margin: 0; padding-left: 0; list-style: none; }
  6. .item { padding: $ios-spacing-sm 0; border-bottom: 1px dashed $ios-border; }
  7. .item:last-child { border-bottom: none; }
  8. .title { font-weight: $ios-font-weight-semibold; color: $ios-text-primary; }
  9. .desc { color: $ios-text-secondary; margin-top: $ios-spacing-xs; }
  10. .meta { display: flex; gap: $ios-spacing-sm; color: $ios-text-secondary; font-size: $ios-font-size-xs; margin-top: $ios-spacing-xs; }
  11. .status { color: $ios-primary; }
  12. .time { color: $ios-text-secondary; }
  13. .response { margin-top: $ios-spacing-sm; color: $ios-primary; }
  14. }