Skip to content

Commit 12f2e1b

Browse files
committed
changed padding between input fields
1 parent c95654c commit 12f2e1b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/components/CodeSnippet.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div>
33
<!-- <input type="checkbox" v-model="lineNumbers"> Linenumbers -->
4-
<p v-if="activeComponent === ''">Select a Component</p>
4+
<p v-if="activeComponent === ''">Select a component</p>
55
<p v-else >{{ `${activeComponent}.vue` }}</p>
66
<prism-editor
77
v-model="code"
@@ -24,7 +24,7 @@ import 'vue-prism-editor/dist/VuePrismEditor.css'
2424
export default {
2525
data () {
2626
return {
27-
code: `Your component boilerplate will be displayed here`,
27+
code: `Your component boilerplate will be displayed here.`,
2828
lineNumbers: true,
2929
height: null
3030
}

src/layouts/MyLayout.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ export default {
7777
.q-list {
7878
// background: gray;
7979
}
80+
// styling between input and elements in q-list drawer
81+
.q-field--with-bottom {
82+
padding-bottom: 5px;
83+
}
8084
// css styling for entire drawer
8185
.q-drawer {
8286
// background: white;

0 commit comments

Comments
 (0)