Files
snort/packages/app/src/Element/FixedTabs.css
2023-08-17 20:36:23 +01:00

35 lines
594 B
CSS

.fixed-tabs {
display: flex;
align-items: center;
flex-direction: row;
white-space: nowrap;
text-align: center;
user-select: none;
}
.fixed-tabs > a {
flex: 1;
padding: 16px;
color: var(--font-tertiary-color);
font-weight: 500;
font-size: 16px;
letter-spacing: 0.2px;
cursor: pointer;
text-decoration: none;
}
.fixed-tabs > a.active {
border-bottom: 1px solid var(--highlight);
color: var(--font-color);
}
.fixed-tabs > a.disabled {
opacity: 0.3;
cursor: not-allowed;
pointer-events: none;
}
.fixed-tabs > a:hover {
border-color: var(--highlight);
}