Gansonic
Gansonic

Reputation: 347

Change color individual tab

How to change the background color of the individual tab in ionic?

I tried to put a class or id in the tab, but it did not work.

I'm using ionic 1

Upvotes: 0

Views: 90

Answers (1)

jobair ahmed
jobair ahmed

Reputation: 121

.tab-item {
  background-color: $energized;
  opacity: 1;
}
.tab-item+ .tab-item  {
  background-color: $balanced;
}
.tab-item+ .tab-item+ .tab-item  {
  background-color: $calm;
}

.tab-item+ .tab-item+ .tab-item+ .tab-item  {
  background-color: $positive;
}

Upvotes: 2

Related Questions