Skip to content

Commit

Permalink
chore: fixed logo size
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed May 4, 2024
1 parent fcc3473 commit ad9fbc4
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions core/client/components/KSponsor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</div>
<!-- Kalisio logo -->
<a href="https://kalisio.com" target="_blank">
<q-img src="kalisio.png" :width="computedLogoWidth">
<q-img src="kalisio.png" width="64px">
<q-tooltip>
{{ $t('KSponsor.MORE_ABOUT_KALISIO') }}
</q-tooltip>
Expand All @@ -25,16 +25,5 @@
</template>

<script setup>
import { computed } from 'vue'
import { useQuasar } from 'quasar'
import KAction from './KAction.vue'
// Data
const $q = useQuasar()
// Computed
const computedLogoWidth = computed(() => {
if ($q.screen.lt.sm) return '48px'
return '56px'
})
</script>

0 comments on commit ad9fbc4

Please sign in to comment.