rechtspilot-ui 0.0.32 → 0.0.33
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.es.js +5 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -2663,6 +2663,7 @@ function xv({
|
|
|
2663
2663
|
return /* @__PURE__ */ p.jsx(Pf, { ...t, children: e });
|
|
2664
2664
|
}
|
|
2665
2665
|
const Tf = B.button`
|
|
2666
|
+
color: ${T.primary[900]};
|
|
2666
2667
|
display: flex;
|
|
2667
2668
|
justify-content: center;
|
|
2668
2669
|
align-items: center;
|
|
@@ -2670,7 +2671,10 @@ const Tf = B.button`
|
|
|
2670
2671
|
height: 36px;
|
|
2671
2672
|
width: 36px;
|
|
2672
2673
|
border-radius: 50%;
|
|
2673
|
-
|
|
2674
|
+
${({ $variant: e }) => e === "outline" && `
|
|
2675
|
+
border: 1px solid ${T.sf.base};
|
|
2676
|
+
padding: 5px;
|
|
2677
|
+
`}
|
|
2674
2678
|
background: ${({ $variant: e }) => e === "light" ? T.sf.tertiary : e === "dark" ? "rgba(37, 43, 40, 0.04)" : "transparent"};
|
|
2675
2679
|
transition: background 0.2s;
|
|
2676
2680
|
&:hover {
|