mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 06:28:40 +00:00
## For #28822 - Enable searching the teams dropdown - Ensure right-scrolling per usual text input fields when search text is long - Ensure neighboring elements are not moved when search text is long  - [x] Changes file added for user-visible changes in `changes/` - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
16 lines
387 B
TypeScript
16 lines
387 B
TypeScript
import pxToRem from "./helpers";
|
|
|
|
export const PADDING = {
|
|
"pad-auto": "auto",
|
|
"pad-xxsmall": pxToRem(2),
|
|
"pad-xsmall": pxToRem(4),
|
|
"pad-small": pxToRem(8),
|
|
"pad-icon": pxToRem(14),
|
|
"pad-medium": pxToRem(16),
|
|
"pad-large": pxToRem(24),
|
|
"pad-xlarge": pxToRem(32),
|
|
"pad-xxlarge": pxToRem(40),
|
|
"pad-xxxlarge": pxToRem(80),
|
|
};
|
|
|
|
export type Padding = keyof typeof PADDING;
|