Skip to content

Commit 8b29f4b

Browse files
committed
something smething blah blah blah
1 parent 09eecf1 commit 8b29f4b

File tree

7 files changed

+32
-27
lines changed

7 files changed

+32
-27
lines changed

quasar.conf.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ module.exports = function (ctx) {
7878
// analyze: true,
7979
// extractCSS: false,
8080
extendWebpack (cfg) {
81-
// cfg.module.rules.push({
82-
// enforce: 'pre',
83-
// test: /\.(js|vue)$/,
84-
// loader: 'eslint-loader',
85-
// exclude: /node_modules/,
86-
// options: {
87-
// formatter: require('eslint').CLIEngine.getFormatter('stylish')
88-
// }
89-
// })
81+
cfg.module.rules.push({
82+
enforce: 'pre',
83+
test: /\.(js|vue)$/,
84+
loader: 'eslint-loader',
85+
exclude: /node_modules/,
86+
options: {
87+
formatter: require('eslint').CLIEngine.getFormatter('stylish')
88+
}
89+
})
9090
}
9191
},
9292

src/components/CodeSnippet.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
language="js"
88
:line-numbers="lineNumbers"
99
class="code-editor"
10-
:style="{ height: `${height}vh` }"
10+
:style="{ height: `${height}vh`}"
1111
/>
1212
</div>
1313
</template>
@@ -121,5 +121,6 @@ export default {
121121
<style lang="stylus" scoped>
122122
// resize handled by vue lifecycle methods
123123
.code-editor {
124+
font-size: 11px;
124125
}
125126
</style>

src/components/ComponentDisplay.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,6 @@ export default {
139139
140140
.active {
141141
background-color: rgba(57, 63, 84, 0.5);
142+
border: 10px dashed rgb(227, 203, 71);
142143
}
143144
</style>

src/components/HomeSideDropDownItems/ComponentList.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export default {
6969
.q-list {
7070
margin-bottom: 0.5rem;
7171
border-radius: 5px;
72+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, 0.13);
7273
}
7374
.component-info {
7475
margin: auto 0;

src/components/Routes.vue

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,19 @@
11
<template>
2-
<div>
3-
<!--<div class="route-view">-->
2+
<div class="home-sidebar" >
43
<a
54
:class="route === activeRoute ? 'panel-block is-active' : 'panel-block'"
65
v-for="route in Object.keys(routes)"
76
:key="route"
87
@click="handleClick(route)"
98
v-on:keyup.delete="deleteSelectedRoute(route)"
109
>
11-
<!--
12-
<span class="panel-icon">
13-
<i class="fas fa-location-arrow" aria-hidden="true"></i>
14-
</span>
15-
-->
16-
<q-list bordered separator>
17-
<q-item clickable v-ripple>
18-
<q-item-section>{{route}}</q-item-section>
19-
20-
</q-item>
21-
22-
</q-list>
23-
10+
<q-list bordered separator>
11+
<q-item clickable v-ripple>
12+
<q-item-section>{{route}}</q-item-section>
13+
</q-item>
14+
</q-list>
2415
</a>
2516
</div>
26-
2717
</template>
2818

2919
<script>

src/css/app.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ main {
66
background: black;
77
// background: rgb(22,108,105);
88
// background: linear-gradient(36deg, rgba(22,108,105,1) 0%, rgba(20,32,23,1) 100%);
9-
}
9+
}

src/layouts/MyLayout.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,16 @@ export default {
7070
// background: white;
7171
background: #272822;
7272
}
73+
body::-webkit-scrollbar {
74+
width: 1em;
75+
}
76+
77+
body::-webkit-scrollbar-track {
78+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
79+
}
80+
81+
body::-webkit-scrollbar-thumb {
82+
background-color: darkgrey;
83+
outline: 1px solid slategrey;
84+
}
7385
</style>

0 commit comments

Comments
 (0)