[Vuejs]-Css not being applied ".class" over "> div" tag

0👍

Try this;

&__header {
display: flex;
justify-content: space-between;

.list-row__statAG {
  color: #315ec5 !important; 
  border-bottom: 1px solid #315ec5;
  height: 80px;
}
.list-row__scTG {
  color: #315ec5 !important; 
  border-bottom: 1px solid #315ec5;
  height: 80px;
}
&>div {
  text-align: left !important;
  color: #B9BABD !important; 

}

}

Leave a comment