Skip to content

Commit efb8aef

Browse files
authored
fix: added-dark-mode-for-overflow-dropdown (#6106)
1 parent b66a71a commit efb8aef

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

frontend/web/components/navigation/TabMenu/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const Tabs: React.FC<TabsProps> = ({
170170
</div>
171171
{overflow.length > 0 && !isMeasuring && (
172172
<div
173-
className='d-flex align-items-center justify-content-center ms-2 flex-shrink-0'
173+
className='d-flex align-items-center justify-content-center ms-2 flex-shrink-0 btn btn-secondary'
174174
style={{
175175
backgroundColor: 'var(--bs-light300)',
176176
borderRadius: 6,

frontend/web/styles/components/_tabs.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,12 @@
151151
display: block;
152152
}
153153

154+
.dark {
155+
.btn-tab {
156+
color: white !important;
157+
}
158+
}
159+
154160
.btn-tab {
155161
position: relative;
156162
.unread {

0 commit comments

Comments
 (0)