how to remove this black line ?
try scss look for tab item , then overide the class the defines the tab item row border color in the ionic.app.css, note this mean you need to set up sass
You can try with these css classes
.tabs-striped .tab-item.tab-item-active {
border-color: #00b09f !important;
}
.tabs-striped .tab-item.activated {
border-color: #00b09f !important;
}
```
1 Like
Thanks.
Resolved it using
.tabs-striped .tab-item.activated {
border: none !important;
}