/
sdds
/
plasma
Обзор
Документация
Войти
/
sdds
/
plasma
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
dev
utils/plasma-cy-utils/src/NormalizeCSSDecorator.tsx
15 строк
331 B
TitanKuzmich
feat(plasma-cy-utils): add NormalizeCSSDecorator
20 ноя 2025, 10:06
20 ноя 2025, 10:06
1b86f75
Код
Авторство
О чём код?
import { createGlobalStyle } from 'styled-components'; /* stylelint-disable selector-max-universal */ export const NormalizeCSSDecorator = createGlobalStyle` html { box-sizing: border-box; } *, ::before, ::after { box-sizing: border-box; } `; /* stylelint-enable selector-max-universal */