Skip to content

Commit 91fdd17

Browse files
committed
Upgrade Vuetify, remove social buttons in sidebar
1 parent 184a5cf commit 91fdd17

File tree

2 files changed

+24
-17
lines changed

2 files changed

+24
-17
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"vue-style-loader": "^3.0.1",
9898
"vue-template-compiler": "^2.5.2",
9999
"vuedraggable": "^2.16.0",
100-
"vuetify": "^1.3.9",
100+
"vuetify": "^1.5.4",
101101
"webpack": "^3.6.0",
102102
"webpack-bundle-analyzer": "^2.9.0",
103103
"webpack-dev-server": "^2.9.1",

src/components/Sidebar.vue

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@
105105
</v-list-tile-content>
106106
</v-list-tile>
107107
<br>
108-
<div style="position: absolute; bottom: 1%;" class="gray--text text-xs-center">
109-
<v-divider></v-divider>
110-
<v-btn v-for="el in socials" :key="el.icon" class="mx-3 gray--text" icon :href="el.link" target="_blank">
111-
<v-icon size="24px">{{ el.icon }}</v-icon>
112-
</v-btn>
113-
<br>
114-
&copy;2018 — <strong>UNIMIB</strong><!-- — <router-link to="/credits"><a>Credits</a></router-link>-->
115-
</div>
108+
<v-layout row wrap fill-height>
109+
<v-flex xs12 style="position:absolute; bottom: 1%;">
110+
<small>
111+
&nbsp; &copy;2019 - CoderBot.org, UNIMIB.
112+
<!-- — <router-link to="/credits"><a>Credits</a></router-link>-->
113+
</small>
114+
</v-flex>
115+
</v-layout>
116116
</v-list>
117117
</v-navigation-drawer>
118118
</template>
@@ -126,9 +126,8 @@
126126
<v-list-tile-content>
127127
<v-list-tile-title class="navEntry">Home</v-list-tile-title>
128128
</v-list-tile-content>
129-
130129
</v-list-tile>
131-
<v-list-tile href="/docs" target="_blank">
130+
<v-list-tile href="/docs" target="_blank">
132131
<v-list-tile-action>
133132
<v-icon large>help</v-icon>
134133
</v-list-tile-action>
@@ -214,19 +213,27 @@
214213
</v-list-tile-content>
215214
</v-list-tile>
216215
<br>
217-
<div style="position: absolute; bottom: 1%;" class="gray--text text-xs-center">
218-
<v-divider></v-divider>
216+
<v-layout row wrap fill-height>
217+
<v-flex xs12 style="position:absolute; bottom: 1%;">
218+
<small>
219+
&nbsp; &copy;2019 - CoderBot.org, UNIMIB.
220+
<!-- — <router-link to="/credits"><a>Credits</a></router-link>-->
221+
</small>
222+
</v-flex>
223+
</v-layout>
224+
<div>
225+
<!--
219226
<v-btn v-for="el in socials" :key="el.icon" class="mx-3 gray--text" icon :href="el.link" target="_blank">
220227
<v-icon size="24px">{{ el.icon }}</v-icon>
221-
</v-btn>
228+
</v-btn>-->
222229
<br>
223-
&copy;2018 — <strong>UNIMIB</strong><!-- — <router-link to="/credits"><a>Credits</a></router-link>-->
230+
<center>
231+
</center>
224232
</div>
225233
</v-list>
226234
</v-navigation-drawer>
227235
</template>
228236
</div>
229-
230237
</template>
231238
<script>
232239
export default {
@@ -248,7 +255,7 @@ export default {
248255
//let programList = this.$data.programList
249256
axios.get(CB + '/listActivities')
250257
.then(function(response) {
251-
this.$data.editModal = true,
258+
this.$data.editModal = true,
252259
this.$data.activitiesList = response.data;
253260
}.bind(this))
254261
},

0 commit comments

Comments
 (0)