finsignal-feed-explore
Version:
News feed explorer components for React web applications
34 lines (29 loc) • 590 B
CSS
.segment-control {
display: flex;
background-color: #f3f4f6;
border-radius: 9999px;
padding: 4px;
gap: 4px;
width: fit-content;
}
.segment-option {
flex: 1;
padding: 12px 24px;
border-radius: 9999px;
border: none;
background-color: transparent;
color: #6b7280;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 200ms ease;
white-space: nowrap;
}
.segment-option:hover:not(.active) {
background-color: #e5e7eb;
}
.segment-option.active {
background-color: #ffffff;
color: #111827;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}