Skip to content

Commit 26c6760

Browse files
author
Loïc Mangeonjean
committed
fix: prevent class conflict
1 parent 94efbb3 commit 26c6760

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

demo/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ <h1>Editor</h1>
3030

3131
<h1>Settings</h1>
3232
<button id="settingsui">Open settings UI</button>
33-
<div id="settings-editor" class="editor"></div>
33+
<div id="settings-editor" class="standalone-editor"></div>
3434
<h1>Keybindings</h1>
3535
<button id="keybindingsui">Open keybindings UI</button>
36-
<div id="keybindings-editor" class="editor"></div>
36+
<div id="keybindings-editor" class="standalone-editor"></div>
3737
</div>
3838
<script type="module" src="/src/main.ts"></script>
3939
</body>

demo/src/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ body {
3333
height: 30vh;
3434
}
3535

36-
.editor {
36+
.standalone-editor {
3737
width: 100%;
3838
height: 55vh;
3939
}

0 commit comments

Comments
 (0)