nav-notice.css (708B)
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 :host { 6 --nav-notice-background-color: var(--theme-bg-color, rgba(21, 20, 26, 0.02)); 7 --nav-notice-text-color: var(--theme-fg-color, --text-color); 8 9 font-size: var(--font-size-small); 10 } 11 12 moz-box-item, 13 moz-box-link { 14 --box-padding: var(--space-xsmall) var(--space-medium); 15 --box-icon-fill: currentColor; 16 --box-icon-stroke: currentColor; 17 18 display: flex; 19 min-height: var(--size-item-xlarge); 20 background-color: var(--nav-notice-background-color); 21 color: var(--nav-notice-text-color); 22 }