mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-27 21:19:11 +00:00
19 lines
395 B
Text
19 lines
395 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`MediaQuery outputs media queries 1`] = `
|
|
"@media screen and (min-width: 0px) {
|
|
font-size: 0.5em;
|
|
};
|
|
@media screen and (min-width: 544px) {
|
|
font-size: 1em;
|
|
};
|
|
@media screen and (min-width: 768px) {
|
|
font-size: 1.5em;
|
|
};
|
|
@media screen and (min-width: 1012px) {
|
|
font-size: 2em;
|
|
};
|
|
@media screen and (min-width: 1280px) {
|
|
font-size: 2.5em;
|
|
};"
|
|
`;
|