Sidebar.css (918B)
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 .sidebar { 6 display: grid; 7 grid-template-rows: auto auto; 8 } 9 10 .sidebar__label { 11 color: var(--secondary-text-color); 12 display: block; 13 padding: 12px 0; 14 text-align: center; 15 font-size: var(--message-font-size); 16 } 17 18 .sidebar__adb-status { 19 margin-block-end: calc(var(--base-unit) * 2); 20 } 21 22 .sidebar__refresh-usb { 23 text-align: center; 24 } 25 26 .sidebar__footer { 27 align-self: flex-end; 28 } 29 30 .sidebar__footer__support-help { 31 display: flex; 32 align-items: center; 33 justify-content: flex-start; 34 column-gap: calc(var(--base-unit) * 4); 35 height: 100%; 36 } 37 38 .sidebar__footer__icon { 39 width: calc(var(--base-unit) * 4); 40 height: calc(var(--base-unit) * 4); 41 -moz-context-properties: fill; 42 fill: currentColor; 43 }