1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
chota/src/_tab.css

25 lines
351 B
CSS
Raw Normal View History

2017-03-30 08:00:14 +03:00
.tabs {
display: flex;
}
.tabs a {
text-decoration: none;
}
.tabs > a {
padding: 1rem 2rem;
flex: 1;
color: #555;
border-bottom: 2px solid var(--lightGrey-color);
text-align: center;
}
.tabs > a.active,
.tabs > a:hover {
border-bottom: 2px solid #555;
}
.tabs > a.active {
border-color: var(--primary-color);
}