tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

_Notifications.scss (409B)


      1 .notification-wrapper {
      2  position: fixed;
      3  inset-inline-end: var(--space-medium);
      4  inset-block-end: var(--space-medium);
      5  z-index: 10;
      6 }
      7 
      8 .notification-feed-item {
      9  position: relative;
     10  animation: toastSlideInSlideOut 4s ease-in-out forwards;
     11 }
     12 
     13 @keyframes toastSlideInSlideOut {
     14  0%, 100% {
     15    opacity: 0;
     16    inset-block-start: 50%;
     17  }
     18 
     19  15%, 85% {
     20    opacity: 1;
     21    inset-block-start: 0;
     22  }
     23 }