Skip to content

Commit

Permalink
(feat) border on stats
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed May 26, 2024
1 parent c0e39ce commit 6f877fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/Extractor.astro
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,13 @@ const baseURL = import.meta.env.PUBLIC_BASE_URL;
<div class="text-center text-sm pt-5 select-none flex items-center justify-center">
<div class="flex items-center space-x-8">
<div class="flex flex-col items-center">
<div class="flex items-center justify-center w-24 h-24 bg-blue-500 rounded-full">
<span class="text-2xl font-bold text-white" x-text="loading.counterCrawls">75</span>
<div class="flex items-center justify-center w-24 h-24 bg-blue-500 rounded-full border-8 border-blue-400">
<span class="text-2xl font-bold text-black" x-text="loading.counterCrawls">75</span>
</div>
<span class="mt-2 text-lg font-bold text-slate-400">Crawls</span>
</div>
<div class="flex flex-col items-center">
<div class="flex items-center justify-center w-24 h-24 bg-green-500 rounded-full">
<div class="flex items-center justify-center w-24 h-24 bg-green-600 rounded-full border-8 border-green-400">
<span class="text-2xl font-bold text-white" x-text="loading.counterHits">120</span>
</div>
<span class="mt-2 text-lg font-bold text-slate-400">Hits</span>
Expand Down

0 comments on commit 6f877fd

Please sign in to comment.