better style to better identify active tab

This commit is contained in:
ogerly 2022-02-04 19:09:59 +01:00
parent 5a77abee51
commit 8a107fdf65

View File

@ -53,17 +53,14 @@ export default {
</script>
<style>
.nav-tabs > li > a {
/* adjust padding for height*/
padding-top: 14px;
padding-bottom: 14px;
}
.nav-tabs > li.active {
background-color: aquamarine;
font-size: larger;
.nav-tabs .nav-link {
background-color: rgba(204, 204, 204, 0.185);
}
.nav-tabs > li > a {
outline: none !important;
.nav-tabs .nav-link.active {
background-color: rgb(248 249 254);
}
</style>