NetworkLocationsList.css (686B)
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 network location item 7 * 8 * +-------------------------------------+---------------+ 9 * | Location (eg localhost:8080) | Remove button | 10 * +-------------------------------------+---------------+ 11 */ 12 .network-location { 13 display: grid; 14 grid-template-columns: auto max-content; 15 align-items: center; 16 17 padding-block: calc(var(--base-unit) * 2); 18 padding-inline: calc(var(--base-unit) * 6); 19 border-bottom: 1px solid var(--card-separator-color); 20 }