FieldPair.css (847B)
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 .fieldpair { 6 display: grid; 7 grid-template-columns: auto auto; 8 border-top: 1px solid var(--card-separator-color); 9 padding-block: calc(var(--base-unit) * 2); 10 padding-inline: calc(var(--base-unit) * 4) calc(var(--base-unit) * 2); 11 } 12 13 .fieldpair:last-child { 14 padding-block-end: 0; 15 } 16 17 .fieldpair__title { 18 margin-inline-end: var(--base-unit); 19 font-size: var(--caption-20-font-size); 20 font-weight: var(--caption-20-font-weight, normal); 21 } 22 23 .fieldpair__description { 24 color: var(--fieldpair-text-color); 25 flex: 1; 26 font-size: var(--caption-20-font-size); 27 font-weight: var(--caption-20-font-weight, normal); 28 text-align: end; 29 }