Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/workbench/components/pickerStyle.ts
13399 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { makeStyles, shorthands } from '@fluentui/react-components';
7
8
export const useInternalToolbarPickerStyles = makeStyles({
9
root: {
10
// Stack the label above the field with a gap
11
display: 'grid',
12
gridTemplateRows: 'repeat(1fr)',
13
justifyItems: 'start',
14
...shorthands.margin(0, ['2px', '2px']),
15
...shorthands.gap('2px'),
16
maxWidth: '400px',
17
},
18
});
19
20