codeforamerica/michigan-benefits

View on GitHub
app/assets/stylesheets/michigan-benefits/organisms/_document-preview.scss

Summary

Maintainability
Test Coverage
.uploadable-preview-container {
  padding-bottom: 1em;
}

.uploadable-preview {
  @include clearfix();
  position: relative;
  margin-bottom: 1em;
  border-bottom: 1px solid $color-tan;
  &__info {
    display: block;
    margin-right: 150px;
    min-height: 75px;
    overflow-wrap: break-word;
  }
  &__thumb {
    background-size: cover;
    border-radius: $border-radius;
    height: 75px;
    position: absolute;
    right: 0;
    top: 0;
    width: 75px;
  }
}

.uploadable-status {
  &.successful {
    color: $color-green;
    font-size: 1.3em;
    padding-right: 0.2em;
  }
}