@redocly/theme 0.30.0 → 0.30.1
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.
|
@@ -93,10 +93,12 @@ const Label = styled_components_1.default.h4 `
|
|
|
93
93
|
margin-right: 15px;
|
|
94
94
|
`;
|
|
95
95
|
const TextArea = styled_components_1.default.textarea `
|
|
96
|
+
background-color: var(--bg-base);
|
|
97
|
+
border-radius: var(--border-radius-lg);
|
|
98
|
+
border: var(--input-border);
|
|
99
|
+
outline: none;
|
|
100
|
+
color: var(--text-primary);
|
|
96
101
|
font-family: var(--font-family-base);
|
|
97
|
-
border: 1px solid #ccc;
|
|
98
|
-
border-radius: 5px;
|
|
99
|
-
color: black;
|
|
100
102
|
margin: 0 0 10px 0;
|
|
101
103
|
padding: 10px;
|
|
102
104
|
`;
|
package/package.json
CHANGED
|
@@ -108,10 +108,12 @@ const Label = styled.h4`
|
|
|
108
108
|
`;
|
|
109
109
|
|
|
110
110
|
const TextArea = styled.textarea`
|
|
111
|
+
background-color: var(--bg-base);
|
|
112
|
+
border-radius: var(--border-radius-lg);
|
|
113
|
+
border: var(--input-border);
|
|
114
|
+
outline: none;
|
|
115
|
+
color: var(--text-primary);
|
|
111
116
|
font-family: var(--font-family-base);
|
|
112
|
-
border: 1px solid #ccc;
|
|
113
|
-
border-radius: 5px;
|
|
114
|
-
color: black;
|
|
115
117
|
margin: 0 0 10px 0;
|
|
116
118
|
padding: 10px;
|
|
117
119
|
`;
|