UNPKG

next13-starter

Version:

Start a Next13 Zustand TypeScript project in few second!

58 lines (56 loc) 1.03 kB
import reset from 'styled-reset'; import { createGlobalStyle } from 'styled-components'; export const GlobalStyle = createGlobalStyle` ${reset} * { box-sizing: border-box; margin: 0px; padding: 0px; } a { color: inherit; text-decoration: none; } input, button { background-color: transparent; border: none; outline: none; } textarea { border: none; outline: none; overflow: auto; resize: none; } ul { list-style: none; } li { list-style-type : none; } :focus{ outline: none; } @keyframes skeleton-ui{ 0%{ background-color: rgba(185, 185, 185, 0.1); } 50%{ background-color: rgba(185, 185, 185, 0.3); } 100%{ background-color: rgba(185, 185, 185, 0.1); } } @-webkit-keyframes skeleton-ui{ 0%{ background-color: rgba(185, 185, 185, 0.1); } 50%{ background-color: rgba(185, 185, 185, 0.3); } 100%{ background-color: rgba(185, 185, 185, 0.1); } } `;