department-of-veterans-affairs/vets-website

View on GitHub
src/applications/accredited-representative-portal/sass/POARequestsCard.scss

Summary

Maintainability
Test Coverage
@import "~@department-of-veterans-affairs/css-library/dist/tokens/scss/variables";

.poa-request {
  &__list {
    list-style-type: none;
    padding: 0;
    display: block;
  }

  &__card {
    margin-bottom: 20px;

    @media (min-width: $small-desktop-screen) {
      max-width: 600px;
    }

    &-icon {
      margin-right: 5px;
      color: var(--vads-color-warning-dark);
    }

    &-title {
      margin: 3px 0 0 0;
    }

    &-field {
      margin: 0;

      &--request {
        display: flex;
        align-items: center;
        margin-top: 8px;
        flex-wrap: wrap;
      }

      &--label {
        font-weight: 700;
        margin-bottom: 0;
        margin-right: 5px;
      }

      &--expiry {
        margin-left: 3px;
      }
    }
  }
}