mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-22 08:09:42 +01:00
333d9a4053
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
19 lines
718 B
TypeScript
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",
|
|
},
|
|
});
|