mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 22:16:09 +05:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
import { css } from 'styled-components'
|
|
|
|
export const standaloneMedia = styles => css`
|
|
@media screen and (display-mode: standalone) {
|
|
${styles};
|
|
}
|
|
`
|