sync-engines-list.css (819B)
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 #heading { 6 font-weight: var(--heading-font-weight); 7 } 8 9 .engines-list-wrapper { 10 display: flex; 11 flex-direction: column; 12 gap: var(--space-medium); 13 } 14 15 .engines-list-container { 16 display: grid; 17 grid-template-rows: auto; 18 grid-template-columns: repeat(2, minmax(0, 1fr)); 19 gap: var(--space-large) var(--space-medium); 20 } 21 22 .sync-engine { 23 display: flex; 24 align-items: center; 25 gap: var(--space-small); 26 27 img { 28 width: var(--icon-size); 29 height: var(--icon-size); 30 pointer-events: none; 31 -moz-context-properties: fill, stroke; 32 fill: var(--icon-color); 33 stroke: var(--icon-color); 34 } 35 }