ui-nyla/src/components/UiComponents/Tabs/Tabs.module.css
2026-04-13 00:38:51 +02:00

50 lines
919 B
CSS

.tabsContainer {
display: flex;
flex-direction: column;
width: 100%;
flex: 1;
min-height: 0;
gap: 0;
}
.tabsHeader {
display: flex;
gap: 0;
border-bottom: 2px solid var(--color-border, #e0e0e0);
margin-bottom: 1rem;
flex-shrink: 0;
}
.tabButton {
padding: 0.75rem 1.5rem;
background: transparent;
border: none;
border-bottom: 2px solid transparent;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
color: var(--color-text, #666);
transition: all 0.2s ease;
margin-bottom: -2px;
font-family: var(--font-family);
}
.tabButton:hover {
color: var(--color-text, #333);
background: var(--color-bg-hover, rgba(0, 0, 0, 0.02));
}
.tabButtonActive {
color: var(--color-secondary, #007bff);
border-bottom-color: var(--color-primary, #007bff);
font-weight: 600;
}
.tabsContent {
flex: 1;
min-height: 0;
width: 100%;
display: flex;
flex-direction: column;
}