Skip to content

Commit

Permalink
change logo and search bar margin
Browse files Browse the repository at this point in the history
  • Loading branch information
Nacnus committed Jan 7, 2024
1 parent 0298f7c commit fb95dcc
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
value="1"
class="nav-bar elevation-0 justify-space-between"
>
<span class="d-flex">
<span class="mt-1 d-flex">
<v-img
class="mt-1"
style="width: 34px;height: 34px;cursor: pointer"
Expand All @@ -23,7 +23,7 @@
label="Arama yap"
background-color="#EEF3F8"
style="width: 280px; border-radius: 4px;"
class="ml-2"
class="ml-2 mt-1"
solo
hide-details
flat
Expand Down Expand Up @@ -63,6 +63,7 @@ export default {
return {
clipped: false,
tab: null,
users: {},
tabs: [
{
text: 'Ana Sayfa',
Expand Down Expand Up @@ -91,6 +92,17 @@ export default {
}
]
}
},
mounted () {
this.getData()
},
methods: {
getData () {
this.$axios.$get()
.then((res) => {
this.users = res
})
}
}
}
</script>
Expand Down

0 comments on commit fb95dcc

Please sign in to comment.