Skip to content

Commit 4a05263

Browse files
committed
changed btn size in main layout, added css class export-button
1 parent 727b9a4 commit 4a05263

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

src/components/ExportProject.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- electron build
33
<q-btn class="glossy" color="secondary" label="Export Project" @click="exportProject"/>
44
-->
5-
<q-btn class="glossy" color="secondary" label="Export Project"/>
5+
<q-btn class="glossy export-btn" color="secondary" label="Export Project"/>
66
</template>
77

88
<script>

src/components/OpenProjectComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-btn class="glossy mr-sm" color="secondary" label="Open Project"/>
2+
<q-btn class="glossy export-btn" color="secondary" label="Open Project"/>
33
<!--<q-btn class="glossy mr-sm" color="secondary" label="Open Project" @click="openProjectJSON"/>-->
44
</template>
55

src/components/SaveProjectComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-btn class="glossy mr-sm" color="secondary" label="Save"/>
2+
<q-btn class="glossy export-btn" color="secondary" label="Save"/>
33
<!--<q-btn class="glossy mr-sm" color="secondary" label="Save" @click="saveProjectJSON"/> Uncomment and delete line above for electron build-->
44
</template>
55

src/layouts/MyLayout.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ export default {
5858
</script>
5959

6060
<style lang="stylus">
61+
.export-btn {
62+
margin-left: 0.3rem;
63+
}
6164
.q-toolbar {
6265
min-height: 30px;
6366
}

0 commit comments

Comments
 (0)