Skip to content

Commit c5b6594

Browse files
authored
add back breakpoint for min-width (#619) rdar://108569652
add back breakpoint for min-width rdar://108569652
1 parent 7f50bea commit c5b6594

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/styles/base/_reset.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,10 @@ button {
184184
body {
185185
$min-width: map-deep-get($breakpoint-attributes, ('default', small, 'min-width'), false);
186186

187+
@include inTargetIde() {
188+
$min-width: map-deep-get($breakpoint-attributes, ('default', xsmall, 'min-width'), false);
189+
}
190+
187191
height: 100%;
188192

189193
@if $min-width {

src/styles/core/_breakpoints.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ $breakpoint-attributes: (
3030
max-width: 735px,
3131
content-width: 280px,
3232
),
33+
xsmall: (
34+
min-width: 245px,
35+
max-width: 320px,
36+
content-width: 215px,
37+
),
3338
),
3439
nav: (
3540
large: (

0 commit comments

Comments
 (0)