alerts-snackbar.less 488 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Alerts
  3. // --------------------------------------------------
  4. .alerts-snackbar {
  5. position: fixed;
  6. top: -100%;
  7. width: 100%;
  8. z-index: @zindex-modal + 10;
  9. text-align: center;
  10. font-size: @font-size-large;
  11. transition: top 300ms ease;
  12. pointer-events: none;
  13. &.in {
  14. top: 0px;
  15. transition: top 200ms ease;
  16. }
  17. p {
  18. display: inline-block;
  19. border-radius: 0px 0px @border-radius-base @border-radius-base;
  20. margin: 0px;
  21. pointer-events: all;
  22. }
  23. }