Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { css } from '@emotion/css';
export const EnvironmentVariablesContainer = css`
display: flex;
align-items: flex-end;
padding-right: 1em;
gap: 20px;
`;
export const EnvironmentVariableContainer = css`
display: flex;
flex-direction: column;
`;
export const EnvironmentVariablesInput = css`
width: 170px;
`;
export const InputContainer = css`
display: flex;
flex-direction: column;
margin-bottom: var(--jp-padding-large);
`;
export const EnvironmentVariablesSection = css`
display: flex;
flex-direction: column;
gap: 16px;
`;
export const InputLabel = css`
font-weight: 400;
font-size: var(--jp-ui-font-size1);
line-height: var(--jp-ui-font-size1);
`;
//Setting one off font-size to make it fit better inline in form.Re-visit to handle button better in future
export const ConfigBtn = css`
background-color: var(--jp-brand-color1);
font-size: var(--jp-ui-font-size1);
text-transform: none;
`;
export const tooltipsContainer = css`
display: inline-flex;
align-items: center;
gap: 6px;
svg {
width: 0.75em;
height: 0.75em;
}
`;
|