tor-browser

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

_ErrorBoundary.scss (448B)


      1 .as-error-fallback {
      2  align-items: center;
      3  border-radius: var(--border-radius-medium);
      4  box-shadow: inset $inner-box-shadow;
      5  color: var(--newtab-text-secondary-color);
      6  display: flex;
      7  flex-direction: column;
      8  font-size: var(--font-size-small);
      9  justify-content: center;
     10  justify-items: center;
     11 
     12  &.borderless-error {
     13    box-shadow: none;
     14  }
     15 
     16  a {
     17    color: var(--newtab-text-secondary-color);
     18    text-decoration: underline;
     19  }
     20 }