@nixweb/nixloc-ui 0.0.168 → 0.0.169

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.168",
3
+ "version": "0.0.169",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -158,8 +158,9 @@ export default {
158
158
  <style scoped>
159
159
  .title {
160
160
  font-size: 14px !important;
161
- font-weight: 500 !important;
162
- color: #3c5874;
161
+ font-weight: 400 !important;
162
+ color: #0a0a0a;
163
+ letter-spacing: 0.5px !important;
163
164
  }
164
165
  .success {
165
166
  color: #94aa2a;
@@ -22,7 +22,7 @@
22
22
  </div>
23
23
  <div class="col-2" v-if="currentRoute != 'dashboard'">
24
24
  <div class="div-back text-right" @click="back()">
25
- <i class="fa-solid fa-angle-left"></i>
25
+ <i class="fa-solid fa-circle-arrow-left"></i>
26
26
  <span> Voltar</span>
27
27
  </div>
28
28
  </div>
@@ -145,15 +145,18 @@ export default {
145
145
  }
146
146
 
147
147
  .div-back {
148
- margin-top: 15px;
149
- font-size: 15px;
148
+ margin-top: 18px;
149
+ font-size: 16px;
150
150
  cursor: pointer;
151
- padding: 10px;
152
- padding-top: 6px;
151
+ padding-top: 3px;
153
152
  padding-left: 10px;
154
153
  padding-right: 30px;
155
154
  font-weight: 400;
156
- color: #3d52a9;
157
- width: 200px;
155
+ color: #242424;
158
156
  }
157
+
158
+ .div-back:hover {
159
+ color: #505050;
160
+ }
161
+
159
162
  </style>