diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-09-11 23:24:13 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-09-11 23:24:13 +0200 |
commit | a5e69edc5a6f1a95618c04e214d39b397577d796 (patch) | |
tree | 09da345ce4e8973886ddb03031886deb9b8ad191 /dist | |
parent | 4a67ba6830950db7d854d3022ed5c77081e106d4 (diff) | |
download | rpgedit-a5e69edc5a6f1a95618c04e214d39b397577d796.tar rpgedit-a5e69edc5a6f1a95618c04e214d39b397577d796.zip |
Code structuring
Also, use a fixed-size canvas for now.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/index.html b/dist/index.html index d020eff..35def01 100644 --- a/dist/index.html +++ b/dist/index.html @@ -9,8 +9,8 @@ height: 100%; } - canvas { - position: absolute; + body { + text-align: center; } * { @@ -21,7 +21,7 @@ </style> </head> <body> - <canvas id="rpgedit"></canvas> + <canvas id="rpgedit" width="1024" height="768"></canvas> <script src="bundle.js"></script> </body> </html> |