diff --git a/ui/src/components/display/UpObject.svelte b/ui/src/components/display/UpObject.svelte index ff3019c..953a58e 100644 --- a/ui/src/components/display/UpObject.svelte +++ b/ui/src/components/display/UpObject.svelte @@ -7,7 +7,7 @@ import { useEntity } from "../../lib/entity"; import { readable } from "svelte/store"; import { notify, UpNotification } from "../../notifications"; -import IconButton from "../utils/IconButton.svelte"; + import IconButton from "../utils/IconButton.svelte"; const dispatch = createEventDispatcher(); export let address: string; @@ -88,11 +88,13 @@ import IconButton from "../utils/IconButton.svelte"; {/if} {#if banner && isFile} - +
+ +
{/if} @@ -131,6 +133,10 @@ import IconButton from "../utils/IconButton.svelte"; width: 0.5em; } + .icon { + margin: 0 .25em; + } + .resolving { opacity: 0.7; } diff --git a/ui/src/components/utils/IconButton.svelte b/ui/src/components/utils/IconButton.svelte index 9eda53f..24d6835 100644 --- a/ui/src/components/utils/IconButton.svelte +++ b/ui/src/components/utils/IconButton.svelte @@ -19,6 +19,9 @@ color: inherit; opacity: 0.66; + display: flex; + align-items: center; + transition: opacity 0.2s, color 0.2s; }