NetworkLocationsForm.css (742B)
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 form 7 * 8 * +-------------+--------------------+------------+ 9 * | "Host:port" | Input | Add button | 10 * +-------------+--------------------+------------+ 11 */ 12 .connect-page__network-form { 13 display: grid; 14 grid-column-gap: calc(var(--base-unit) * 2); 15 grid-template-columns: auto 1fr auto; 16 align-items: center; 17 padding-block-start: calc(var(--base-unit) * 4); 18 padding-inline: calc(var(--base-unit) * 6); 19 } 20 21 .connect-page__network-form__error-message { 22 grid-column: 1 / -1; 23 }