Skip to content

Preflights

Môžete injektovať surové CSS ako preflights z konfigurácie. Na prispôsobenie CSS je k dispozícii vyriešená theme.

ts
preflights: [
  {
    getCSS: ({ theme }) => `
      * {
        color: ${theme.colors.gray?.[700] ?? '#333'};
        padding: 0;
        margin: 0;
      }
    `,
  },
]

Released under the MIT License.