deep-c / react-redux-notify

A simple and flexible notifications component built using React and Redux.
https://deep-c.github.io/react-redux-notify/
MIT License
34 stars 14 forks source link

Can I use custom styles for text content? #38

Open favetelinguis opened 5 years ago

favetelinguis commented 5 years ago

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.