react-redux-notify icon indicating copy to clipboard operation
react-redux-notify copied to clipboard

Can I use custom styles for text content?

Open favetelinguis opened this issue 5 years ago • 0 comments

Is it possible to change the following CSS?

.item {
  padding: 10px;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  border-top: 1px solid hsla(0,0%,0%,.1);
  -webkit-font-smoothing: antialiased;
  &__message {
    @extend .item;
    font-size: 0.9rem;
    max-height: $max-height;
    overflow-y: auto;
    border-top: none;
    p:last-child {
      margin-bottom: 0;
    }
  }
  &__btnBar {
    @extend .item;
    margin-top: 10px;
    padding: 0;
  }
}

I find the tex of the message to be way to bold and would like to make it smaller.

favetelinguis avatar Apr 05 '19 08:04 favetelinguis