Skip to content

Commit

Permalink
Merge pull request #69 from pnp/7.0.3
Browse files Browse the repository at this point in the history
fixes some height issues of the window
  • Loading branch information
tavikukko authored Sep 18, 2024
2 parents 27e078e + d5b08b3 commit 00033f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sp-editor",
"version": "7.0.2",
"version": "7.0.3",
"private": true,
"homepage": ".",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SP Editor",
"homepage_url": "https://microsoftedge.microsoft.com/addons/detail/affnnhcbfmcbbdlcadgkdbfafigmjdkk",
"version": "7.0.2",
"version": "7.0.3",
"description": "Create and update SharePoint Online/SP2013/SP2016/SP2019 css/js files, inject files to web, manage web/list properties, list Webhook",
"manifest_version": 3,
"devtools_page": "devtools.html",
Expand Down
3 changes: 3 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ setupIonicReact();

const prefersDark = window.matchMedia("(prefers-color-scheme: dark)");

document.body.style.minWidth = 100 + '%';
document.body.style.minHeight = 100 + '%';

const App = () => {
const { theme } = useSelector((state: IRootState) => state.home);

Expand Down

0 comments on commit 00033f1

Please sign in to comment.