placeholder-message.css (721B)
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 moz-box-item { 6 --box-padding: var(--space-large); 7 } 8 9 .placeholder-container, 10 .text-container { 11 display: flex; 12 } 13 14 .placeholder-container { 15 gap: var(--space-large); 16 align-items: center; 17 } 18 19 .text-container { 20 gap: var(--space-xsmall); 21 text-align: start; 22 flex-direction: column; 23 justify-content: center; 24 } 25 26 img { 27 max-width: 100px; 28 } 29 30 .label:has(+ .support-link), 31 .description:has(+ .support-link) { 32 margin-inline-end: var(--space-xsmall); 33 } 34 35 .description { 36 color: var(--text-color-deemphasized); 37 }