Changeset 58142 for trunk/src/wp-content/themes/twentytwentyone/assets/sass/03-generic/breakpoints.scss
- Timestamp:
- 05/13/2024 04:41:05 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyone/assets/sass/03-generic/breakpoints.scss
r49795 r58142 19 19 20 20 @if mobile-only == $res { 21 @media only screen and (max-width: #{$breakpoint_sm - 1}) {21 @media only screen and (max-width: #{$breakpoint_sm - 0.02}) { 22 22 @content; 23 23 } … … 31 31 32 32 @if tablet-only == $res { 33 @media only screen and (max-width: #{$breakpoint_md - 1}) {33 @media only screen and (max-width: #{$breakpoint_md - 0.02}) { 34 34 @content; 35 35 } … … 43 43 44 44 @if laptop-only == $res { 45 @media only screen and (max-width: #{$breakpoint_lg - 1}) {45 @media only screen and (max-width: #{$breakpoint_lg - 0.02}) { 46 46 @content; 47 47 } … … 55 55 56 56 @if desktop-only == $res { 57 @media only screen and (max-width: #{$breakpoint_xl - 1}) {57 @media only screen and (max-width: #{$breakpoint_xl - 0.02}) { 58 58 @content; 59 59 } … … 67 67 68 68 @if wide-only == $res { 69 @media only screen and (max-width: #{$breakpoint_xxl - 1}) {69 @media only screen and (max-width: #{$breakpoint_xxl - 0.02}) { 70 70 @content; 71 71 }
Note: See TracChangeset
for help on using the changeset viewer.