Files
vscode/extensions/copilot/test/simulation/workbench/components/pickerStyle.ts
T
Matt Bierner 3c8134184b Enable no-unexternalized-strings in repo (#2448)
Enables the same `no-unexternalized-strings` with have in `vscode` in this repo. This make sure we have a more consistent style across repos and when generating edits
2025-12-05 18:45:12 +00:00

19 lines
718 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { makeStyles, shorthands } from '@fluentui/react-components';
export const useInternalToolbarPickerStyles = makeStyles({
root: {
// Stack the label above the field with a gap
display: 'grid',
gridTemplateRows: 'repeat(1fr)',
justifyItems: 'start',
...shorthands.margin(0, ['2px', '2px']),
...shorthands.gap('2px'),
maxWidth: '400px',
},
});