@setoelkahfi / svara / commits / 4d85a65

Style cleanup

mellobacon committed Nov 25, 2022 at 16:33 UTC 4d85a65f974ca5117e13bfa584fd31e9ed0668a1
3 files changed +9 -7
src/components/Footer/Footer.svelte
+4 -1
@@ -77,7 +77,7 @@
77 {/if}
78 </div>
79
80 -<style>
80 +<style lang="scss">
81 #footer {
82 z-index: 8000;
83 width: 100%;
@@ -85,6 +85,9 @@
85 align-items: center;
86 border-top: 1px solid #393939;
87 font-size: 0.9rem;
88 + span {
89 + white-space: nowrap;
90 + }
91 }
92 #info {
93 display: flex;
src/components/Header/Header.svelte
+1 -1
@@ -91,7 +91,7 @@
91 margin-left: auto;
92 height: 100%;
93 display: flex;
94 - z-index: 9999;
94 + z-index: 10;
95 .window-button {
96 min-width: 36px;
97 height: 100%;
src/components/Tabs/EditorTabs.svelte
+4 -5
@@ -30,19 +30,18 @@
30 #editor-tabs {
31 width: -webkit-fill-available;
32 display: flex;
33 - align-items: center;
33 justify-content: space-between;
34 position: absolute;
35 box-shadow: inset 0px -1px 0 0 #333;
36 #tablist {
38 - position: absolute;
39 - height: 100%;
37 + position: relative;
38 display: flex;
39 + overflow-x: overlay;
40 &::-webkit-scrollbar {
42 - height: 4px;
41 + height: 7px;
42 }
43 &::-webkit-scrollbar-thumb {
45 - background-color: #ffffff12;
44 + background-color: #e8e8e81f;
45 }
46 }
47 }