We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3cbb2 commit d2a63bbCopy full SHA for d2a63bb
2 files changed
src/assets/App.css
@@ -1517,3 +1517,12 @@ Modal
1517
width: auto;
1518
}
1519
1520
+
1521
+.mobileOnly {
1522
+ display: none;
1523
+}
1524
+@media (max-width: 768px) {
1525
+ .mobileOnly {
1526
+ display: block;
1527
+ }
1528
src/components/Layout/Header.tsx
@@ -67,6 +67,11 @@ export const Header = () => {
67
<Changelog />
68
</span>
69
<SearchBar />
70
+ <div className="buttonsFlex extras mobileOnly">
71
+ <CircleButton onClick={onSettingsClick}>
72
+ <BsFillGearFill />
73
+ </CircleButton>
74
+ </div>
75
<div className="buttonsFlex extras">
76
{isDNDModeActive() && (
77
<Button onClick={onUnpauseClicked} className="dndButton">
0 commit comments