601b517058
* Dialog - use 100dvh * Add "There's more to Speckle - be sure to visit on a computer" to Dashboard * Fix Breadcrumb logo skewing * Lower mobile panel responsive fixes * Tidy up "You have completed" message * Remove info colour from Change Password * Add desktop icons. Restyle Notifications * Colour suggested by Agi * Use dvh everywhere * Small update * Fix compostable warning
29 lines
554 B
Vue
29 lines
554 B
Vue
<template>
|
|
<NuxtLink class="flex items-center shrink-0" to="/">
|
|
<img
|
|
class="block h-6 w-6"
|
|
:class="{ 'mr-2': !minimal, grayscale: active }"
|
|
src="~~/assets/images/speckle_logo_big.png"
|
|
alt="Speckle"
|
|
/>
|
|
<div
|
|
v-if="!minimal"
|
|
class="text-primary h6 mt-0 hidden font-bold leading-7 md:flex"
|
|
>
|
|
Speckle
|
|
</div>
|
|
</NuxtLink>
|
|
</template>
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
minimal: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
active: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
})
|
|
</script>
|