Layout scaffolding for Web apps.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

14 rader
413 B

  1. import {CSSObject} from 'styled-components'
  2. import config from '../config.json'
  3. export const minWidthFactor = (factor: number) => (styles: CSSObject) => ({
  4. [`@media (min-width: ${config['base-width'] * factor}px)`]: styles,
  5. })
  6. export const applyBackgroundColor = () => ({
  7. backgroundColor: 'var(--color-bg, white)',
  8. '@media (prefers-color-scheme: dark)': {
  9. backgroundColor: 'var(--color-bg, black)',
  10. },
  11. })