Updated mobile content tabs to respect dark mode

This commit is contained in:
Dan Brown 2021-04-27 21:55:33 +01:00
parent aa6a752e38
commit f24336f77a
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -221,17 +221,21 @@ header .search-box {
z-index: 5;
background-color: #FFF;
border-bottom: 1px solid #DDD;
@include lightDark(border-bottom-color, #DDD, #333);
box-shadow: $bs-card;
}
.tri-layout-mobile-tab {
text-align: center;
border-bottom: 3px solid #BBB;
cursor: pointer;
@include lightDark(background-color, #FFF, #222);
@include lightDark(border-bottom-color, #BBB, #333);
&:first-child {
border-inline-end: 1px solid #DDD;
@include lightDark(border-inline-end-color, #DDD, #000);
}
&[aria-selected="true"] {
border-bottom-color: currentColor;
border-bottom-color: currentColor !important;
}
}