aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/container.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-06-16 04:17:02 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-06-16 04:24:59 +0800
commit54f79c2798c095344b003139144b77fc1024d8c3 (patch)
tree079217538d8a7330cbdf90d1e0b04eb956a51e97 /packages/website/ts/components/ui/container.tsx
parentd0a3779091661cfa099ec84f12e5d944287d1e3f (diff)
downloaddexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.tar
dexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.tar.gz
dexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.tar.bz2
dexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.tar.lz
dexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.tar.xz
dexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.tar.zst
dexon-sol-tools-54f79c2798c095344b003139144b77fc1024d8c3.zip
Improve styles of onboarding tooltip
Diffstat (limited to 'packages/website/ts/components/ui/container.tsx')
-rw-r--r--packages/website/ts/components/ui/container.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/website/ts/components/ui/container.tsx b/packages/website/ts/components/ui/container.tsx
index c6a78e181..3b55a18ce 100644
--- a/packages/website/ts/components/ui/container.tsx
+++ b/packages/website/ts/components/ui/container.tsx
@@ -16,6 +16,11 @@ export interface ContainerProps {
maxWidth?: StringOrNum;
isHidden?: boolean;
className?: string;
+ position?: 'absolute' | 'fixed' | 'relative' | 'unset';
+ top?: string;
+ left?: string;
+ right?: string;
+ bottom?: string;
}
export const Container: React.StatelessComponent<ContainerProps> = ({ children, className, isHidden, ...style }) => {