Run lint:fix and accept a huge formatting change

This commit is contained in:
Julian Stirling 2025-10-27 18:00:00 +00:00
parent 3900c3e1ad
commit c085d2c0ac
68 changed files with 756 additions and 1047 deletions

View file

@ -1,5 +1,5 @@
<template>
<a @click.prevent="$emit('click')" class="sync-button">
<a class="sync-button" @click.prevent="$emit('click')">
<span
class="material-symbols-outlined sync-icon"
title="Reread value from microscope. Required if microscope is updated externally"
@ -11,7 +11,7 @@
<script>
export default {
name: "syncPropertyButton"
name: "SyncPropertyButton",
};
</script>
@ -24,14 +24,13 @@ export default {
cursor: pointer;
}
.material-symbols-outlined.sync-icon{
.material-symbols-outlined.sync-icon {
color: #888;
transition: transform 0.3s ease, color 0.3s ease;
}
.material-symbols-outlined.sync-icon:hover{
.material-symbols-outlined.sync-icon:hover {
transform: rotate(-90deg);
color: #c5247f;
}
</style>