@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nixweb/nixloc-ui",
3
- "version": "0.0.79",
3
+ "version": "0.0.80",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -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" :style="'background-color:' + corBase">
11
- <i class="fas fa-chart-area icone" aria-hidden="true"></i>
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" :style="'background-color:' + corBase">
24
- <i :class="item.icone" class="icone" aria-hidden="true"></i>
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="fa fa-chevron-right" aria-hidden="true"></i>
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: 30px;
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
- margin-left: 14px;
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: 18px;
163
+ font-size: 16px;
172
164
  font-weight: normal;
173
165
  }
174
166
  </style>
@@ -98,8 +98,7 @@ export default {
98
98
  <style scoped>
99
99
  .c-container {
100
100
  margin: auto;
101
- padding-left: 235px;
102
- padding-right: 30px;
101
+ padding-left: 220px;
103
102
  max-width: 1400px;
104
103
  }
105
104
 
@@ -29,7 +29,7 @@ export default {
29
29
  width: 100%;
30
30
  position: fixed;
31
31
  top: 0;
32
- left: 0;
32
+ left: 220px;
33
33
  z-index: 20;
34
34
  }
35
35
  </style>