Skip to content

Commit

Permalink
fix unexpect bottom spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
luizbills committed May 3, 2024
1 parent 4a716af commit f102d54
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 106 deletions.
3 changes: 2 additions & 1 deletion public/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,9 @@ svg {
flex-direction: column;
}

.code .cm-editor {
.code .cm-container {
flex: 1;
overflow: hidden;
}

.game {
Expand Down
206 changes: 103 additions & 103 deletions public/app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
>&times;</a
>
</div>
<div class="cm-container"></div>
</div>
<div class="game">
<iframe id="frame" frameborder="0"></iframe>
Expand Down
2 changes: 1 addition & 1 deletion public/sw.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const cacheName = "luizbills.litecanvas-editor-v1";
const version = "1.38.0";
const version = "1.39.0";

const precacheResources = [
"/",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const state = EditorState.create({

window.codeEditor = new EditorView({
state,
parent: $(".code"),
parent: $(".code .cm-container"),
});

function compressString(str) {
Expand Down

0 comments on commit f102d54

Please sign in to comment.