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