mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-01 12:26:02 +03:00
fix some mono fonts
This commit is contained in:
parent
536621d54e
commit
e32a788056
@ -177,7 +177,7 @@
|
|||||||
<div class="text-lg text-zinc-300 hover:text-zinc-200">
|
<div class="text-lg text-zinc-300 hover:text-zinc-200">
|
||||||
{project.title}
|
{project.title}
|
||||||
</div>
|
</div>
|
||||||
<div class="font-mono text-base break-words text-zinc-500">
|
<div class="text-base break-words text-zinc-500">
|
||||||
{project.path}
|
{project.path}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -139,7 +139,9 @@
|
|||||||
{#each Object.entries(fileSessions) as filetime}
|
{#each Object.entries(fileSessions) as filetime}
|
||||||
<div class="flex flex-row justify-between">
|
<div class="flex flex-row justify-between">
|
||||||
<div class="font-mono text-zinc-100">{filetime[0]}</div>
|
<div class="font-mono text-zinc-100">{filetime[0]}</div>
|
||||||
<div class="text-zinc-400">{@html timestampsToSpark(filetime[1])}</div>
|
<div class="font-mono text-zinc-400">
|
||||||
|
{@html timestampsToSpark(filetime[1])}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
@ -152,7 +154,9 @@
|
|||||||
<div>
|
<div>
|
||||||
<h2 class="mb-2 text-lg font-bold text-zinc-300">Work in Progress</h2>
|
<h2 class="mb-2 text-lg font-bold text-zinc-300">Work in Progress</h2>
|
||||||
{#if $filesStatus.length == 0}
|
{#if $filesStatus.length == 0}
|
||||||
<div class="rounded bg-green-900 p-4 text-green-400 border border-green-700">Everything is committed</div>
|
<div class="rounded bg-green-900 p-4 text-green-400 border border-green-700">
|
||||||
|
Everything is committed
|
||||||
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<div class="rounded bg-yellow-500 p-4 text-yellow-900 border border-yellow-600 font-mono">
|
<div class="rounded bg-yellow-500 p-4 text-yellow-900 border border-yellow-600 font-mono">
|
||||||
<ul class="pl-4">
|
<ul class="pl-4">
|
||||||
|
Loading…
Reference in New Issue
Block a user