Change tabs again

This commit is contained in:
Gregory Schier
2023-04-02 11:11:53 -07:00
parent 80bfbd503a
commit b04602bcb9
4 changed files with 10 additions and 5 deletions

View File

@@ -81,7 +81,9 @@ export function Tabs({
<HStack space={1} className="flex-shrink-0">
{tabs.map((t) => {
const isActive = t.value === value;
const btnClassName = classnames(isActive ? 'bg-highlightSecondary' : 'text-gray-600');
// const btnClassName = classnames(isActive ? 'bg-highlightSecondary' : 'text-gray-600');
const btnClassName = classnames(isActive ? '' : 'text-gray-600', '!px-0 mr-4 ml-[1px]');
if ('options' in t) {
const option = t.options.items.find(
(i) => 'value' in i && i.value === t.options?.value,