tor-browser

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

SidebarFixedItem.css (752B)


      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 /*
      6 * Layout of a fixed sidebar item
      7 *
      8 *  +--------+----------------+
      9 *  | Icon   | Name           |
     10 *  +--------+----------------+
     11 */
     12 
     13 .sidebar-fixed-item__container {
     14  align-items: center;
     15  border-radius: var(--border-radius-xsmall);
     16  display: grid;
     17  grid-template-columns: 34px 1fr;
     18  height: 100%;
     19  font-size: var(--body-20-font-size);
     20  font-weight: var(--body-20-font-weight, normal);
     21 }
     22 
     23 .sidebar-fixed-item__icon {
     24  fill: currentColor;
     25  height: 24px;
     26  margin-inline-end: 9px;
     27  width: 24px;
     28  -moz-context-properties: fill;
     29 }