michaelchadwick/ember-remember-stuff

View on GitHub
packages/frontend/app/styles/components/messages.scss

Summary

Maintainability
Test Coverage
.messages {
  background-color: #fdfdfd;
  border-radius: 0.5em;
  box-shadow: 0 0.25em 1.5em 0.25em rgba(0 0 0 / 10%);
  padding: 2em;

  & > .message {
    display: grid;
    grid-template-columns: 80px 1fr;

    & > section {
      margin-bottom: 1.5em;
      line-height: 1.5em;
    }
  }
}

.messages p,
.messages ul,
.username {
  margin: 0.5em 0;
}

.local-time {
  font-size: 0.8em;
  color: #da6c4d;
  font-weight: normal;
  margin-left: 10px;
}