Newer
Older
dmpopidor / app / assets / stylesheets / blocks / _notification_areas.scss
@Bodacious Bodacious on 19 Oct 2018 284 bytes Update asset structure with webpacker gem
.notification-area {

}

.notification-area--floating {
  position: fixed;
  top: 4rem;
  z-index: 1000;
  // Take up width of the page on mobile
  right: 5vw;
  width: 90vw;

  // Non-mobile settings
  @media (min-width: #{$screen-sm-min}) {
    right: 4rem;
    width: 300px;
  }
}