@nixweb/nixloc-ui 0.0.74 → 0.0.77
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;
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
<div class="row">
|
|
14
14
|
<div class="col-10">
|
|
15
15
|
<div class="div-titulo">
|
|
16
|
-
<span class="modulo">
|
|
16
|
+
<span class="modulo">
|
|
17
|
+
<span class="icone"><i class="fas fa-compass"></i></span> {{ modulo }} /</span
|
|
18
|
+
>
|
|
17
19
|
<span class="titulo"> {{ titulo }}</span>
|
|
18
20
|
</div>
|
|
19
21
|
</div>
|
|
@@ -96,7 +98,7 @@ export default {
|
|
|
96
98
|
<style scoped>
|
|
97
99
|
.c-container {
|
|
98
100
|
margin: auto;
|
|
99
|
-
padding-left:
|
|
101
|
+
padding-left: 220px;
|
|
100
102
|
padding-right: 30px;
|
|
101
103
|
max-width: 1400px;
|
|
102
104
|
}
|
|
@@ -106,17 +108,22 @@ export default {
|
|
|
106
108
|
}
|
|
107
109
|
|
|
108
110
|
.modulo {
|
|
109
|
-
font-size:
|
|
111
|
+
font-size: 18px;
|
|
110
112
|
font-weight: 300;
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
.titulo {
|
|
114
|
-
font-size:
|
|
116
|
+
font-size: 20px;
|
|
115
117
|
font-weight: normal;
|
|
116
118
|
line-height: 34px;
|
|
117
119
|
color: #577696;
|
|
118
120
|
}
|
|
119
121
|
|
|
122
|
+
.icone{
|
|
123
|
+
opacity: 0.8;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
|
|
120
127
|
.c-voltar {
|
|
121
128
|
margin-top: 20px;
|
|
122
129
|
margin-right: 12px;
|