update styles in button and item-content

This commit is contained in:
William Martin 2024-05-16 14:27:21 -04:00
parent 121494fb2e
commit 105b25ee60
No known key found for this signature in database
GPG Key ID: A65ACD91BADF316B
2 changed files with 2 additions and 1 deletions

View File

@ -69,6 +69,7 @@ export class ButtonComponent implements ButtonLikeAbstraction {
"tw-border",
"tw-border-solid",
"tw-text-center",
"tw-no-underline",
"hover:tw-no-underline",
"focus:tw-outline-none",
]

View File

@ -8,7 +8,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core";
templateUrl: `item-content.component.html`,
host: {
class:
"fvw-target tw-outline-none tw-text-main hover:tw-text-main hover:tw-no-underline tw-text-base tw-py-2 tw-px-4 tw-bg-transparent tw-w-full tw-border-none tw-flex tw-gap-4 tw-items-center tw-justify-between",
"fvw-target tw-outline-none tw-text-main hover:tw-text-main tw-no-underline hover:tw-no-underline tw-text-base tw-py-2 tw-px-4 tw-bg-transparent tw-w-full tw-border-none tw-flex tw-gap-4 tw-items-center tw-justify-between",
},
changeDetection: ChangeDetectionStrategy.OnPush,
})