Skip to main content
Module

x/goober/website/public/styles/global.js

πŸ₯œ goober, a less than 1KB πŸŽ‰ css-in-js alternative with a familiar API
Go to Latest
File
import { createGlobalStyles } from 'goober/global';import { theme } from './theme';
export const GlobalStyles = createGlobalStyles` html, body { margin: 0; padding: 0; display: flex; flex: 1; flex-direction: column; flex-grow: 1; height: 100%; width: 100%; font: 1rem system-ui,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; color: ${theme.colors.white}; background-color: ${theme.colors['gray-50']}; position: relative; overflow: 'hidden' }
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
a:link, a:visited { text-decoration: none; }
@keyframes appear { from { opacity: 0; } to { opacity: 1; } }`;