|
@@ -17,7 +17,7 @@
|
17
|
17
|
<span></span>
|
18
|
18
|
<span></span>
|
19
|
19
|
</button>
|
20
|
|
- <a class="navbar-brand text-brand" @click="routerGoTo('/')">
|
|
20
|
+ <div class="navbar-brand text-brand" style="cursor: pointer;" @click="routerGoTo('/')">
|
21
|
21
|
<img
|
22
|
22
|
class="img-fluid"
|
23
|
23
|
src="/img/logos/UVProp.png"
|
|
@@ -26,7 +26,7 @@
|
26
|
26
|
/>
|
27
|
27
|
Uni-Vate
|
28
|
28
|
<span class="color-b">Properties</span>
|
29
|
|
- </a>
|
|
29
|
+ </div>
|
30
|
30
|
<button
|
31
|
31
|
type="button"
|
32
|
32
|
class="btn btn-link nav-search navbar-toggle-box-collapse d-md-none"
|
|
@@ -262,3 +262,13 @@ export default {
|
262
|
262
|
},
|
263
|
263
|
};
|
264
|
264
|
</script>
|
|
265
|
+<style scoped>
|
|
266
|
+a {
|
|
267
|
+ border: transparent thin solid;
|
|
268
|
+}
|
|
269
|
+a:hover {
|
|
270
|
+ background-color: #a9e0ff;
|
|
271
|
+ border-radius: 5px;
|
|
272
|
+ border: silver thin solid;
|
|
273
|
+}
|
|
274
|
+</style>
|