mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
3ecb6c4a31
- Migrated to WXT - Migrated to NPM - Added Insert & copy action - Added ESLint
31 lines
774 B
TypeScript
31 lines
774 B
TypeScript
import { makeStyles, shorthands, tokens } from "@fluentui/react-components";
|
|
|
|
export const useStyles = makeStyles({
|
|
root:
|
|
{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
...shorthands.padding(tokens.spacingVerticalM, tokens.spacingHorizontalS),
|
|
},
|
|
spinner:
|
|
{
|
|
alignSelf: "center",
|
|
...shorthands.margin(tokens.spacingVerticalXXXL, 0),
|
|
},
|
|
accordionAnimation:
|
|
{
|
|
"> .fui-AccordionItem .fui-AccordionHeader__expandIcon > svg":
|
|
{
|
|
transitionProperty: "transform",
|
|
transitionDuration: tokens.durationNormal,
|
|
transitionTimingFunction: tokens.curveDecelerateMax,
|
|
},
|
|
"> .fui-AccordionItem > .fui-AccordionPanel":
|
|
{
|
|
animationName: "fadeIn",
|
|
animationDuration: tokens.durationSlow,
|
|
animationTimingFunction: tokens.curveDecelerateMin,
|
|
}
|
|
},
|
|
});
|