35 lines
619 B
SCSS
35 lines
619 B
SCSS
/* Container for tabs */
|
|
.settlementTabs {
|
|
display: inline-flex;
|
|
gap: 16px;
|
|
font-family: "Poppins";
|
|
margin-bottom: 12px;
|
|
border-bottom: 1px solid #d1d5db;
|
|
|
|
}
|
|
|
|
/* Default tab style */
|
|
.tabItem {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
color: #6b7280;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
position: relative;
|
|
border: none;
|
|
background: transparent;
|
|
font-family: "Gilroy";
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.tabItem.active {
|
|
color: #0f172a;
|
|
border-bottom: 2px solid #1296db !important;
|
|
}
|
|
|
|
.tabContent {
|
|
margin-top: 20px;
|
|
}
|
|
|