react-link-group
Version:
A ReactJS component for rendering a grouping of clickable links. Clicking a link executes a callback function, passing it the id of the selected link
31 lines (27 loc) • 588 B
CSS
.reactLinkGroup {
padding: 10px 0px;
width: 100%;
list-style-type: none;
color: gray;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 14px;
}
.reactLink {
display: block;
float: left;
margin: 0px;
padding: 10px 50px;
cursor: pointer;
border-bottom: solid 2px darkgrey;
}
.reactLink:last-child {
float:none;
overflow:hidden;
}
.reactLink.selected {
text-decoration: none;
font-weight: bold;
color: black;
cursor: default;
border-bottom: solid 3px rgb(247, 65, 95);
}