@tinacms/app 2.0.1 → 2.0.2
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -160,9 +160,9 @@ export const RawEditor = (props: RichTextType) => {
|
|
|
160
160
|
|
|
161
161
|
return (
|
|
162
162
|
<div className="relative">
|
|
163
|
-
<div className="sticky top-1 w-full flex justify-between mb-2 z-50 max-w-full">
|
|
163
|
+
<div className="sticky top-1 w-full flex justify-between mb-2 z-50 max-w-full bg-white">
|
|
164
164
|
<Button onClick={() => props.setRawMode(false)}>
|
|
165
|
-
View in rich-text editor
|
|
165
|
+
View in rich-text editor 📝
|
|
166
166
|
</Button>
|
|
167
167
|
<ErrorMessage error={error} />
|
|
168
168
|
</div>
|
|
@@ -222,7 +222,7 @@ const Button = (props) => {
|
|
|
222
222
|
props.align === 'left'
|
|
223
223
|
? 'rounded-l-md border-r-0'
|
|
224
224
|
: 'rounded-r-md border-l-0'
|
|
225
|
-
} shadow rounded-md bg-white cursor-pointer relative inline-flex items-center px-2 py-2 border border-gray-200 hover:text-white text-sm font-medium transition-all ease-out duration-150 hover:bg-blue-500 focus:z-10 focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500`}
|
|
225
|
+
} flex justify-center w-full shadow rounded-md bg-white cursor-pointer relative inline-flex items-center px-2 py-2 border border-gray-200 hover:text-white text-sm font-medium transition-all ease-out duration-150 hover:bg-blue-500 focus:z-10 focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500`}
|
|
226
226
|
type="button"
|
|
227
227
|
onClick={props.onClick}
|
|
228
228
|
>
|