refac: styling

This commit is contained in:
Timothy J. Baek 2024-10-20 18:35:19 -07:00
parent b38ed4221a
commit b529212a2d
2 changed files with 5 additions and 5 deletions

View File

@ -303,7 +303,7 @@ class Pipe:
<div class=" flex-shrink-0 mr-2"> <div class=" flex-shrink-0 mr-2">
<Tooltip content={$i18n.t('Back')}> <Tooltip content={$i18n.t('Back')}>
<button <button
class="w-full text-left text-sm py-1.5 px-0.5 rounded-lg dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-gray-850" class="w-full text-left text-sm py-1.5 px-1 rounded-lg dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-gray-850"
on:click={() => { on:click={() => {
goto('/workspace/functions'); goto('/workspace/functions');
}} }}
@ -316,7 +316,7 @@ class Pipe:
<div class="flex-1"> <div class="flex-1">
<input <input
class="w-full text-2xl font-medium bg-transparent outline-none" class="w-full text-2xl font-medium bg-transparent outline-none font-primary"
type="text" type="text"
placeholder={$i18n.t('Function Name (e.g. My Filter)')} placeholder={$i18n.t('Function Name (e.g. My Filter)')}
bind:value={name} bind:value={name}
@ -386,7 +386,7 @@ class Pipe:
</div> </div>
<button <button
class="px-3 py-1.5 text-sm font-medium bg-emerald-600 hover:bg-emerald-700 text-gray-50 transition rounded-lg" class="px-3 py-1.5 text-sm font-medium bg-black hover:bg-gray-900 text-white dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full"
type="submit" type="submit"
> >
{$i18n.t('Save')} {$i18n.t('Save')}

View File

@ -191,7 +191,7 @@ class Tools:
<div class=" flex-shrink-0 mr-2"> <div class=" flex-shrink-0 mr-2">
<Tooltip content={$i18n.t('Back')}> <Tooltip content={$i18n.t('Back')}>
<button <button
class="w-full text-left text-sm py-1.5 px-0.5 rounded-lg dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-gray-850" class="w-full text-left text-sm py-1.5 px-1 rounded-lg dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-gray-850"
on:click={() => { on:click={() => {
goto('/workspace/tools'); goto('/workspace/tools');
}} }}
@ -274,7 +274,7 @@ class Tools:
</div> </div>
<button <button
class="px-3 py-1.5 text-sm font-medium bg-emerald-600 hover:bg-emerald-700 text-gray-50 transition rounded-lg" class="px-3 py-1.5 text-sm font-medium bg-black hover:bg-gray-900 text-white dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full"
type="submit" type="submit"
> >
{$i18n.t('Save')} {$i18n.t('Save')}