Skip to content

Commit 6ab6550

Browse files
committed
fix: restore desktop mixin lost during upstream sync
UsagePage.module.scss uses @include desktop which was removed from mixins.scss when syncing upstream. Add it back with min-width: 1025px breakpoint (tablet + 1).
1 parent 1dda586 commit 6ab6550

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/styles/mixins.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
}
1818
}
1919

20+
@mixin desktop {
21+
@media (min-width: #{$breakpoint-tablet + 1}) {
22+
@content;
23+
}
24+
}
25+
2026
// 文本截断
2127
@mixin text-ellipsis {
2228
overflow: hidden;

0 commit comments

Comments
 (0)