tor-browser

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

ServiceWorkerAction.css (723B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 .service-worker-action {
      6  display: flex;
      7  column-gap: calc(var(--base-unit) * 2);
      8 }
      9 
     10 .service-worker-action__status {
     11  display: flex;
     12  align-items: center;
     13 }
     14 
     15 .service-worker-action__status::before {
     16  background-color: var(--grey-50);
     17  border-radius: var(--border-radius-circle);
     18  content: "";
     19  height: calc(var(--base-unit) * 2);
     20  margin-inline-end: var(--base-unit);
     21  width: calc(var(--base-unit) * 2);
     22 }
     23 
     24 .service-worker-action__status--running::before {
     25  background-color: var(--success-background);
     26 }