mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-07-02 19:52:43 +03:00
6881ab9dbc
* npm package update/npm audit fix/manifest version update * Dependabot grouping update * Minor branding update * Updated copyright dates * Bumped typescript to 6.0.3
23 lines
426 B
TypeScript
23 lines
426 B
TypeScript
import { makeStyles, tokens } from "@fluentui/react-components";
|
|
|
|
export const useStyles = makeStyles({
|
|
root:
|
|
{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
gap: tokens.spacingVerticalM,
|
|
padding: `${tokens.spacingVerticalS} ${tokens.spacingHorizontalM}`
|
|
},
|
|
horizontalContainer:
|
|
{
|
|
display: "flex",
|
|
gap: tokens.spacingHorizontalSNudge,
|
|
},
|
|
img:
|
|
{
|
|
height: "100px",
|
|
alignSelf: "flex-end",
|
|
flexGrow: 1
|
|
}
|
|
});
|