9 lines
240 B
CSS
9 lines
240 B
CSS
:root {
|
|
/* variables for js, must be the same as these in @custom-media queries */
|
|
--phoneWidth: (max-width: 684px);
|
|
--tabletWidth: (max-width: 900px);
|
|
}
|
|
|
|
@custom-media --phone (width < 684px);
|
|
@custom-media --tablet (width < 900px);
|