@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,6 @@
1
1
  {
2
2
  "name": "@nixweb/nixloc-ui",
3
- "version": "0.0.80",
3
+ "version": "0.0.81",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -152,9 +152,7 @@ export default {
152
152
  </script>
153
153
 
154
154
  <style scoped>
155
- .titulo {
156
- color: #5f7587;
157
- }
155
+
158
156
  .sucesso {
159
157
  color: #94aa2a;
160
158
  font-size: 14px;
@@ -138,9 +138,7 @@ export default {
138
138
  </script>
139
139
 
140
140
  <style scoped>
141
- .titulo {
142
- color: #5f7587;
143
- }
141
+
144
142
  .sucesso {
145
143
  color: #94aa2a;
146
144
  font-size: 14px;
@@ -47,7 +47,5 @@ export default {
47
47
  .opcoes {
48
48
  margin-top: 5px;
49
49
  }
50
- .titulo {
51
- color: #5f7587;
52
- }
50
+
53
51
  </style>
@@ -145,9 +145,7 @@ export default {
145
145
  </script>
146
146
 
147
147
  <style scoped>
148
- .titulo{
149
- color: #5F7587;
150
- }
148
+
151
149
  .sucesso {
152
150
  color: #94aa2a;
153
151
  font-size: 14px;
@@ -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>