mirror of
https://github.com/XFox111/easylogon-web.git
synced 2026-07-02 19:52:45 +03:00
51 lines
896 B
TypeScript
51 lines
896 B
TypeScript
import { makeStyles, tokens } from "@fluentui/react-components";
|
|
|
|
export const useStyles = makeStyles({
|
|
root:
|
|
{
|
|
margin: `${tokens.spacingVerticalXL} ${tokens.spacingHorizontalXXXL}`,
|
|
|
|
animationName: "fadeIn",
|
|
animationDuration: tokens.durationSlow,
|
|
},
|
|
header:
|
|
{
|
|
display: "flex",
|
|
flexFlow: "column",
|
|
alignItems: "flex-start",
|
|
marginBottom: tokens.spacingVerticalXL,
|
|
},
|
|
headerTitle:
|
|
{
|
|
margin: 0
|
|
},
|
|
titleContainer:
|
|
{
|
|
display: "flex",
|
|
flexFlow: "column",
|
|
userSelect: "text"
|
|
},
|
|
lastUpdated:
|
|
{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
gap: tokens.spacingHorizontalSNudge
|
|
},
|
|
lastUpdatedSkeleton:
|
|
{
|
|
width: "160px"
|
|
},
|
|
article:
|
|
{
|
|
display: "flex",
|
|
flexFlow: "column",
|
|
userSelect: "text",
|
|
|
|
animationName: "fadeIn",
|
|
animationDuration: tokens.durationNormal,
|
|
animationTimingFunction: tokens.curveEasyEaseMax,
|
|
|
|
gap: tokens.spacingVerticalM,
|
|
},
|
|
});
|