@mirweb/mir-web-components 2.0.5 → 2.0.7
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.
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
|
|
238
238
|
<script setup lang="ts">
|
|
239
239
|
import { ref, onMounted, onUnmounted, watch } from "vue";
|
|
240
|
-
import
|
|
240
|
+
import AtomLink from "../../atoms/link/link.vue";
|
|
241
241
|
|
|
242
242
|
let clickEventListener: ((e: MouseEvent) => void) | null = null;
|
|
243
243
|
const props = defineProps({
|
|
@@ -449,10 +449,12 @@ defineExpose({
|
|
|
449
449
|
|
|
450
450
|
.mir-link-logo img {
|
|
451
451
|
object-fit: contain;
|
|
452
|
+
object-position: left;
|
|
452
453
|
}
|
|
453
454
|
.mobile-mir-link-logo img {
|
|
454
455
|
object-fit: contain;
|
|
455
456
|
max-width: 120px;
|
|
457
|
+
object-position: left;
|
|
456
458
|
}
|
|
457
459
|
</style>
|
|
458
460
|
|