Skip to content

Commit 332d017

Browse files
committed
d-flex applied, icons back in, direct element styling; added dev-env artifacts to git-ignore
1 parent 4daaaef commit 332d017

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
**/node_modules
22
.DS_Store
3-
.env
3+
.env
4+
dev-env/dist/*

components/McityToolbar.vue

+11-5
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
class="mt-1"
2222
url="https://static.um.city/icons/bars-solid-custom.svg"
2323
/>
24-
</v-btn>
24+
</v-btn>
2525
</template>
26-
<v-list dense style="min-width: 800px; max-height: 100vh; background-color:#f5c400" class="overflow-y-auto">
27-
<v-container fluid grid-list-sm>
26+
<v-list dense style="min-width: 400px; max-height: 100vh;" class="overflow-y-auto">
27+
<v-container fluid grid-list-xl>
2828
<v-layout
2929
v-for="(itemCat, indCat) in applicationCategories"
3030
:key="indCat"
@@ -49,8 +49,11 @@
4949
target="_blank"
5050
rel="noopener"
5151
>
52-
<v-list-item-action>
53-
<v-list-item-content class="mcity-menu-category-member" color="primary--text">
52+
<v-list-item-action class="d-flex">
53+
<v-list-item-content>
54+
<svg-icon :url="item.svg" />
55+
</v-list-item-content>
56+
<v-list-item-content class="mcity-menu-category-member" color="primary--text" style="overflow:visible; font-size: 20px;">
5457
{{ item.text }}
5558
</v-list-item-content>
5659
</v-list-item-action>
@@ -232,6 +235,7 @@ export default {
232235
<style>
233236
.mcity-menu-category-member {
234237
margin-left: 10px;
238+
overflow:visible;
235239
}
236240
.mcity-subtitle {
237241
font-weight: 500;
@@ -251,4 +255,6 @@ export default {
251255
svg-icon {
252256
height: 22px;
253257
}
258+
254259
</style>
260+

0 commit comments

Comments
 (0)