ManifestItem.css (701B)
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 .manifest-item { 6 vertical-align: baseline; 7 } 8 9 .manifest-item__label { 10 box-sizing: border-box; 11 min-width: calc(var(--base-unit) * 32); 12 padding-inline-end: calc(var(--base-unit) * 4); 13 padding-inline-start: 0; 14 vertical-align: top; 15 color: var(--theme-text-color-alt); 16 font-weight: inherit; 17 text-align: start; 18 } 19 20 .manifest-item__value { 21 word-break: break-all; 22 vertical-align: top; 23 } 24 25 .manifest-item__label, 26 .manifest-item__value { 27 padding-block: calc(var(--base-unit) * 1); 28 }