@setoelkahfi / svara / commits / 391289a

yes

mellbacon committed May 8, 2023 at 18:51 UTC 391289a74abb03030199395f375168e2999bddb5
2 files changed +11 -1
src/lib/Statusbar.svelte
+11
@@ -3,6 +3,9 @@
3 <span>Nucleus</span>
4 <div class="divider"></div>
5 </div>
6 + <div class="editor-tools">
7 +
8 + </div>
9 </div>
10
11 <style lang="scss">
@@ -28,4 +31,12 @@
31 width: 0.0625rem;
32 height: 1rem;
33 }
34 + .editor-tools {
35 + height: 100%;
36 + width: -webkit-fill-available;
37 + display: flex;
38 + align-items: center;
39 + justify-content: space-between;
40 + padding-left: 10px;
41 + }
42 </style>
\ No newline at end of file
src/lib/utility/Dropdown.svelte
-1
@@ -11,7 +11,6 @@
11 afterUpdate(() => {
12 if (open && dropdownList) {
13 const { height , left, width, top } = button.getBoundingClientRect();
14 - console.log(top)
14 dropdownList.style.top = `${height + top}px`;
15 if (right) {
16 dropdownList.style.right = `calc(100% - ${left + width}px`;