How to remove gap between tabcontainer and tabsheetpanel

Hi

I am using Vaadin 7.5.6 and I want to remove the line which dispaly horizontaly below the tabs.

Here is y css code and the attachment of the resut

.v-tabsheet-tabsheetpanel {
background: blue;
}

.v-tabsheet-tabcontainer-view-tabs {
height: 40px;
background: #7a7677;
}

Thanks
Nagaraj
23103.png

Hey Nagaraj,

This should do it, if you’re using Valo.

.v-tabsheet-tabcontainer:before {
  content: none;
}

Ya i am using valo theme and it works fine for me.
Thank you Mr. Joacim Paivarinne.