@nixweb/nixloc-ui 0.0.79 → 0.0.80
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
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
@click.prevent="navegarPara('dashboard')"
|
|
8
8
|
:class="sessaoDestaque('home')"
|
|
9
9
|
>
|
|
10
|
-
<div class="div-icone lado-a-lado"
|
|
11
|
-
<i class="fas fa-chart-area icone"
|
|
10
|
+
<div class="div-icone lado-a-lado">
|
|
11
|
+
<i class="fas fa-chart-area icone-dash" :style="'color:' + corBase"></i>
|
|
12
12
|
</div>
|
|
13
13
|
<div class="lado-a-lado titulo">Dashboard</div>
|
|
14
14
|
</a>
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
@click.prevent="abrirSubMenu(item.modulo)"
|
|
21
21
|
:class="sessaoDestaque(item.modulo)"
|
|
22
22
|
>
|
|
23
|
-
<div class="div-icone lado-a-lado"
|
|
24
|
-
<i :class="item.icone" class="icone"
|
|
23
|
+
<div class="div-icone lado-a-lado">
|
|
24
|
+
<i :class="item.icone" class="icone" :style="'color:' + corBase"></i>
|
|
25
25
|
</div>
|
|
26
26
|
<div class="lado-a-lado titulo">{{ item.modulo }}</div>
|
|
27
27
|
<div class="lado-a-lado seta menu__arrow-icon">
|
|
28
|
-
<i class="
|
|
28
|
+
<i class="fas fa-angle-right"></i>
|
|
29
29
|
</div>
|
|
30
30
|
</a>
|
|
31
31
|
</li>
|
|
@@ -69,7 +69,6 @@
|
|
|
69
69
|
|
|
70
70
|
<script>
|
|
71
71
|
import { mapState } from "vuex";
|
|
72
|
-
|
|
73
72
|
export default {
|
|
74
73
|
name: "Menu",
|
|
75
74
|
props: {
|
|
@@ -138,37 +137,30 @@ export default {
|
|
|
138
137
|
width: 277px;
|
|
139
138
|
z-index: 1000;
|
|
140
139
|
}
|
|
141
|
-
|
|
142
140
|
.div-icone {
|
|
143
141
|
width: 35px;
|
|
144
142
|
height: 35px;
|
|
145
|
-
text-align: center;
|
|
146
143
|
padding-top: 5px;
|
|
147
|
-
border-radius: 10px;
|
|
148
144
|
}
|
|
149
|
-
|
|
150
145
|
.icone-fechar {
|
|
151
|
-
margin-right:
|
|
146
|
+
margin-right: 20px;
|
|
152
147
|
}
|
|
153
|
-
|
|
154
148
|
.icone {
|
|
155
|
-
color: white;
|
|
156
149
|
font-size: 18px;
|
|
157
150
|
}
|
|
158
|
-
|
|
151
|
+
.icone-dash {
|
|
152
|
+
font-size: 20px;
|
|
153
|
+
}
|
|
159
154
|
.titulo {
|
|
160
|
-
|
|
161
|
-
font-size: 15px;
|
|
155
|
+
font-size: 14px;
|
|
162
156
|
font-weight: 400;
|
|
163
157
|
}
|
|
164
|
-
|
|
165
158
|
.titulo-sub {
|
|
166
159
|
margin-left: 5px;
|
|
167
160
|
font-weight: 400;
|
|
168
161
|
}
|
|
169
|
-
|
|
170
162
|
.sub-titulo {
|
|
171
|
-
font-size:
|
|
163
|
+
font-size: 16px;
|
|
172
164
|
font-weight: normal;
|
|
173
165
|
}
|
|
174
166
|
</style>
|