Skip to content

Commit

Permalink
Refactor: Move inline styles to the bottom of the file
Browse files Browse the repository at this point in the history
Failed lint test.
  • Loading branch information
TDeSain committed Jan 28, 2025
1 parent b24c4a9 commit 3942c3e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/lib/components/explorer/FacetSideBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,6 @@
});
</script>

<style>
.radial-container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
</style>

{#await facetsPromise}
<div class="radial-container">
<ProgressRadial width="w-10" />
Expand All @@ -79,3 +70,12 @@
<p>Please wait a moment, refresh the page, and try again.</p>
</ErrorAlert>
{/await}

<style>
.radial-container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
</style>

0 comments on commit 3942c3e

Please sign in to comment.