♻️(frontend) misc improvements
- add opacity props on Box - rename to cunningham-style.css - update illustration-docs-empty.png - smaller tooltip
This commit is contained in:
@@ -24,6 +24,7 @@ export interface BoxProps {
|
|||||||
$hasTransition?: boolean | 'slow';
|
$hasTransition?: boolean | 'slow';
|
||||||
$height?: CSSProperties['height'];
|
$height?: CSSProperties['height'];
|
||||||
$justify?: CSSProperties['justifyContent'];
|
$justify?: CSSProperties['justifyContent'];
|
||||||
|
$opacity?: CSSProperties['opacity'];
|
||||||
$overflow?: CSSProperties['overflow'];
|
$overflow?: CSSProperties['overflow'];
|
||||||
$margin?: MarginPadding;
|
$margin?: MarginPadding;
|
||||||
$maxHeight?: CSSProperties['maxHeight'];
|
$maxHeight?: CSSProperties['maxHeight'];
|
||||||
@@ -65,6 +66,7 @@ export const Box = styled('div')<BoxProps>`
|
|||||||
${({ $minHeight }) => $minHeight && `min-height: ${$minHeight};`}
|
${({ $minHeight }) => $minHeight && `min-height: ${$minHeight};`}
|
||||||
${({ $maxWidth }) => $maxWidth && `max-width: ${$maxWidth};`}
|
${({ $maxWidth }) => $maxWidth && `max-width: ${$maxWidth};`}
|
||||||
${({ $minWidth }) => $minWidth && `min-width: ${$minWidth};`}
|
${({ $minWidth }) => $minWidth && `min-width: ${$minWidth};`}
|
||||||
|
${({ $opacity }) => $opacity && `opacity: ${$opacity};`}
|
||||||
${({ $overflow }) => $overflow && `overflow: ${$overflow};`}
|
${({ $overflow }) => $overflow && `overflow: ${$overflow};`}
|
||||||
${({ $padding }) => $padding && stylesPadding($padding)}
|
${({ $padding }) => $padding && stylesPadding($padding)}
|
||||||
${({ $position }) => $position && `position: ${$position};`}
|
${({ $position }) => $position && `position: ${$position};`}
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
@import url('@gouvfr-lasuite/ui-kit/style');
|
||||||
|
@import url('./cunningham-tokens.css');
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/**
|
/**
|
||||||
* Input
|
* Input
|
||||||
@@ -33,3 +36,10 @@
|
|||||||
--c--components--button--border-radius
|
--c--components--button--border-radius
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tooltip
|
||||||
|
*/
|
||||||
|
.c__tooltip {
|
||||||
|
padding: 4px 6px;
|
||||||
|
}
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 293 KiB |
@@ -1,6 +1,4 @@
|
|||||||
@import url('@gouvfr-lasuite/ui-kit/style');
|
@import url('../cunningham/cunningham-style.css');
|
||||||
@import url('../cunningham/cunningham-tokens.css');
|
|
||||||
@import url('../cunningham/cunningham-custom-tokens.css');
|
|
||||||
@import url('@fontsource/material-icons');
|
@import url('@fontsource/material-icons');
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|||||||
Reference in New Issue
Block a user