@nixweb/nixloc-ui 0.0.80 → 0.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="menu-container" :class="{ 'menu-aberto': subMenuPrimeiroNivel }">
|
|
3
3
|
<ul class="menu">
|
|
4
|
+
<li v-if="urlImagem">
|
|
5
|
+
<div class="div-logo text-center">
|
|
6
|
+
<img :src="urlImagem" />
|
|
7
|
+
</div>
|
|
8
|
+
<div class="div-hr"><hr /></div>
|
|
9
|
+
</li>
|
|
4
10
|
<li>
|
|
5
11
|
<a
|
|
6
12
|
href="#"
|
|
@@ -76,6 +82,7 @@ export default {
|
|
|
76
82
|
type: String,
|
|
77
83
|
default: "#4680A5",
|
|
78
84
|
},
|
|
85
|
+
urlImagem: String,
|
|
79
86
|
},
|
|
80
87
|
data() {
|
|
81
88
|
return {
|
|
@@ -137,11 +144,22 @@ export default {
|
|
|
137
144
|
width: 277px;
|
|
138
145
|
z-index: 1000;
|
|
139
146
|
}
|
|
147
|
+
|
|
148
|
+
.div-logo {
|
|
149
|
+
margin-top: 5px;
|
|
150
|
+
}
|
|
151
|
+
|
|
140
152
|
.div-icone {
|
|
141
153
|
width: 35px;
|
|
142
154
|
height: 35px;
|
|
143
155
|
padding-top: 5px;
|
|
144
156
|
}
|
|
157
|
+
|
|
158
|
+
.div-hr {
|
|
159
|
+
padding-left: 30px;
|
|
160
|
+
padding-right: 30px;
|
|
161
|
+
}
|
|
162
|
+
|
|
145
163
|
.icone-fechar {
|
|
146
164
|
margin-right: 20px;
|
|
147
165
|
}
|
|
@@ -163,4 +181,9 @@ export default {
|
|
|
163
181
|
font-size: 16px;
|
|
164
182
|
font-weight: normal;
|
|
165
183
|
}
|
|
184
|
+
|
|
185
|
+
img {
|
|
186
|
+
height: 30px;
|
|
187
|
+
margin-top: 10px;
|
|
188
|
+
}
|
|
166
189
|
</style>
|