@nixweb/nixloc-ui 0.0.75 → 0.0.76
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,9 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="menu-container"
|
|
4
|
-
:class="{ 'menu-aberto': subMenuPrimeiroNivel }"
|
|
5
|
-
style="z-index: 1000"
|
|
6
|
-
>
|
|
2
|
+
<div class="menu-container" :class="{ 'menu-aberto': subMenuPrimeiroNivel }">
|
|
7
3
|
<ul class="menu">
|
|
8
4
|
<li>
|
|
9
5
|
<a
|
|
@@ -14,7 +10,7 @@
|
|
|
14
10
|
<div class="div-icone lado-a-lado" :style="'background-color:' + corBase">
|
|
15
11
|
<i class="fas fa-chart-area icone" aria-hidden="true"></i>
|
|
16
12
|
</div>
|
|
17
|
-
|
|
13
|
+
<div class="lado-a-lado titulo">Dashboard</div>
|
|
18
14
|
</a>
|
|
19
15
|
</li>
|
|
20
16
|
|
|
@@ -27,10 +23,10 @@
|
|
|
27
23
|
<div class="div-icone lado-a-lado" :style="'background-color:' + corBase">
|
|
28
24
|
<i :class="item.icone" class="icone" aria-hidden="true"></i>
|
|
29
25
|
</div>
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
<div class="lado-a-lado titulo">{{ item.modulo }}</div>
|
|
27
|
+
<div class="lado-a-lado seta menu__arrow-icon">
|
|
32
28
|
<i class="fa fa-chevron-right" aria-hidden="true"></i>
|
|
33
|
-
</div>
|
|
29
|
+
</div>
|
|
34
30
|
</a>
|
|
35
31
|
</li>
|
|
36
32
|
</ul>
|
|
@@ -145,11 +141,10 @@ export default {
|
|
|
145
141
|
border-radius: 10px;
|
|
146
142
|
}
|
|
147
143
|
|
|
148
|
-
.icone-fechar{
|
|
144
|
+
.icone-fechar {
|
|
149
145
|
margin-right: 30px;
|
|
150
146
|
}
|
|
151
147
|
|
|
152
|
-
|
|
153
148
|
.icone {
|
|
154
149
|
color: white;
|
|
155
150
|
font-size: 18px;
|