opus-react 0.2.17 → 0.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +103 -91
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +19 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +98 -86
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2107,7 +2107,10 @@
|
|
|
2107
2107
|
}
|
|
2108
2108
|
|
|
2109
2109
|
.opus_S1A372_requirement, .opus_S1A372_requirementMet {
|
|
2110
|
+
align-items: center;
|
|
2111
|
+
gap: 8px;
|
|
2110
2112
|
font-size: .78rem;
|
|
2113
|
+
display: flex;
|
|
2111
2114
|
}
|
|
2112
2115
|
|
|
2113
2116
|
.opus_S1A372_requirement {
|
|
@@ -2115,7 +2118,22 @@
|
|
|
2115
2118
|
}
|
|
2116
2119
|
|
|
2117
2120
|
.opus_S1A372_requirementMet {
|
|
2118
|
-
color: color-mix(in srgb,
|
|
2121
|
+
color: color-mix(in srgb, #22c55e 70%, var(--opus-text));
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.opus_S1A372_requirementIcon {
|
|
2125
|
+
flex-shrink: 0;
|
|
2126
|
+
width: 12px;
|
|
2127
|
+
height: 12px;
|
|
2128
|
+
font-size: .72rem;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.opus_S1A372_requirement .opus_S1A372_requirementIcon {
|
|
2132
|
+
color: color-mix(in srgb, var(--opus-muted) 70%, transparent);
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
.opus_S1A372_requirementMet .opus_S1A372_requirementIcon {
|
|
2136
|
+
color: #22c55e;
|
|
2119
2137
|
}
|
|
2120
2138
|
|
|
2121
2139
|
/* components/fields/RatingField/RatingField.module.css */
|