style(ui): adjust layout alignment and sizing in settings page and tab nav

This commit is contained in:
2026-04-22 20:22:07 -04:00
parent e647aef47e
commit f082ef4fda
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -2,9 +2,9 @@
import React from 'react';
const TabNav = ({ tabs = [], activeTab, onTabChange }) => {
const TabNav = ({ tabs = [], activeTab, onTabChange}) => {
return (
<div className="flex border-b border-neutral-200 dark:border-neutral-800/70">
<div className="w-full flex border-b border-neutral-200 dark:border-neutral-800/70">
{tabs.map((tab) => {
const isActive = tab.id === activeTab;
return (