/
Stoc
/
Sber
Обзор
Документация
Войти
/
Stoc
/
Sber
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/Loading/LoadingArticle/LoadingArticle.styles.tsx
23 строки
499 B
Stocil
add: adaptive articles loading
23 апр 2024, 14:47
23 апр 2024, 14:47
b172ddb
Код
Авторство
О чём код?
import { Skeleton, Stack, styled } from "@mui/material"; export const LoadingArticleAuthorData = styled(Stack)(({ theme }) => ({ flexDirection: "row", gap: theme.spacing(2), alignItems: "center", alignSelf: "start", [theme.breakpoints.down("sm")]: { flexDirection: "column-reverse", alignItems: "end", }, })); export const LoadingTag = styled(Skeleton)(({ theme }) => ({ height: 25, width: 60, [theme.breakpoints.down("sm")]: { width: 40, height: 15, }, }));