Ссылка на Codesandbox

Ниже приведен код CSS для вкладок:
.react-tabs__tab {
background-color: inherit;
border: 1px solid #ccc;
border-radius: 50px;
cursor: pointer;
padding: 10px;
}
.react-tabs__tab:hover {
color: #0099ff;
transition: 0.3s;
}
.react-tabs__tab--selected {
color: #0099ff;
border: 1px solid #0099ff;
border-bottom: none; /* Updated line */
}
.react-tabs__tab:focus {
outline: none;
}
.react-tabs__tab:focus:after {
content: none;
}
Подробнее здесь: https://stackoverflow.com/questions/764 ... bs-library
Мобильная версия