prosperita-dumbo-react 1.2.13 → 1.2.14
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.
|
@@ -6202,9 +6202,9 @@ const V0 = {
|
|
|
6202
6202
|
font-family: IBM Plex Sans;
|
|
6203
6203
|
color: ${c.textPrimary};
|
|
6204
6204
|
background-color: ${c.layer01};
|
|
6205
|
-
border-radius: ${({
|
|
6205
|
+
border-radius: ${({ noRadius: e }) => e ? "0px" : "5px"};
|
|
6206
6206
|
border: ${({ error: e, disabled: t, kind: n }) => e && n === "default" ? `1px solid ${c.supportError}` : t ? `1px solid ${c.borderDisabled}` : "0"};
|
|
6207
|
-
border-bottom: ${({
|
|
6207
|
+
border-bottom: ${({ borderNone: e }) => e ? "auto" : `1px solid ${c.borderStrong01}`};
|
|
6208
6208
|
min-height: 18px;
|
|
6209
6209
|
outline: 0;
|
|
6210
6210
|
width: 100%;
|