NavConst.ts 315 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { IStackTokens, IStackStyles } from '@fluentui/react';

const stackTokens: IStackTokens = {
    childrenGap: 15
};
const stackStyle: IStackStyles = {
    root: {
        minWidth: 400,
        height: 56,
        display: 'flex',
        verticalAlign: 'center'
    }
};

export { stackTokens, stackStyle };