Nebula icon indicating copy to clipboard operation
Nebula copied to clipboard

Use the new Range Syntax for CSS media queries (🟩 fully supported now)

Open chrisblakley opened this issue 1 year ago • 1 comments

https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries

Allows for more easily understandable media queries such as:

@media ( width <= 768px ){
    /* Do stuff on widths less than or equal to 768px */
}
@media ( 768px <= width <= 1200px ){
    /* Do stuff on widths in between 768px and 1200px (inclusive) */
}

https://caniuse.com/css-media-range-syntax

Screen Shot 2022-08-03 at 11 36 35 PM

chrisblakley avatar Aug 04 '22 03:08 chrisblakley

This is now ready to be implemented into Nebula!

Screen Shot 2023-07-24 at 5 24 58 PM

chrisblakley avatar Jul 24 '23 21:07 chrisblakley