Skip to content

Commit

Permalink
Merge pull request #268 from flanksource/ui
Browse files Browse the repository at this point in the history
fix: bump ui
  • Loading branch information
moshloop authored Aug 22, 2021
2 parents df5dbf1 + 0eed245 commit 74c21fc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.14.5",
"@craco/craco": "^6.2.0",
"@flanksource/flanksource-ui": "^0.1.9",
"@flanksource/flanksource-ui": "^0.1.10",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.3",
"@tailwindcss/forms": "^0.3.3",
Expand Down
6 changes: 5 additions & 1 deletion ui/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ import { Canary } from "@flanksource/flanksource-ui/dist/components";
import "./index.css";

function App() {
return <Canary url="/api" />;
return (
<div className="max-w-screen-xl mx-auto flex justify-center">
<Canary url="/api" />
</div>
);
}

export default App;

0 comments on commit 74c21fc

Please sign in to comment.