style(ui): adjust layout alignment and sizing in settings page and tab nav
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user