blob: 96bcdae5ddeb73903397ae79ed327757b66b126d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.manifest-issue__icon {
-moz-context-properties: fill;
width: calc(var(--base-unit) * 3);
height: calc(var(--base-unit) * 3);
}
.manifest-issue__icon--warning {
fill: var(--theme-icon-warning-color);
}
.manifest-issue__icon--error {
fill: var(--theme-icon-error-color);
}
|