Skip to content

Commit

Permalink
fix: broken pipeline, use padding instead of margin
Browse files Browse the repository at this point in the history
  • Loading branch information
tjmaynes committed Jun 25, 2024
1 parent 94db469 commit 790548d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion scripts/cloudflare/cloudflare-page-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ function check_requirements() {
function main() {
check_requirements

./node_modules/.bin/wrangler pages deploy "$CLOUDFLARE_PAGES_DIRECTORY"
./node_modules/.bin/wrangler pages deploy \
--project-name "$CLOUDFLARE_PAGES_PROJECT_NAME" \
"$CLOUDFLARE_PAGES_DIRECTORY"

echo "Done!"
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/SimpleJsonEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const SimpleJsonEditor = () => {

return (
<div className="flex flex-col w-full h-full">
<p className="mb-8 text-center text-7xl">{emoji}</p>
<p className="pb-8 text-center text-7xl">{emoji}</p>
<JsonEditor
placeholder="Type or paste your json here..."
value={state.value}
Expand Down

0 comments on commit 790548d

Please sign in to comment.