Navigation: Fix broken layout at 544px (#63793)

* ensure media queries transition properly

* fix unit tests
This commit is contained in:
Ashley Harrison
2023-03-01 15:31:32 +00:00
committed by GitHub
parent 78b39bb282
commit 8e9ccfc66e
8 changed files with 22 additions and 14 deletions

View File

@@ -16,8 +16,8 @@ export interface ThemeBreakpoints {
values: ThemeBreakpointValues;
keys: string[];
unit: string;
up: (key: ThemeBreakpointsKey) => string;
down: (key: ThemeBreakpointsKey) => string;
up: (key: ThemeBreakpointsKey | number) => string;
down: (key: ThemeBreakpointsKey | number) => string;
}
/** @internal */