mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
33 lines
627 B
JavaScript
Executable File
33 lines
627 B
JavaScript
Executable File
import { createGlobalStyle, css } from 'styled-components'
|
|
|
|
import { standaloneMedia } from './standaloneMedia'
|
|
|
|
export default createGlobalStyle`
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body {
|
|
font-family: "Open Sans", sans-serif;
|
|
box-sizing: border-box;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
letter-spacing: -0.1px;
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
|
${standaloneMedia(css`
|
|
height: 100vh;
|
|
`)}
|
|
}
|
|
|
|
button {
|
|
font-family: "Open Sans", sans-serif;
|
|
letter-spacing: -0.1px;
|
|
}
|
|
`
|