aboutsummaryrefslogtreecommitdiff
path: root/components/ui.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-02-06 11:19:59 +0100
committerlonkaars <l.leblansch@gmail.com>2021-02-06 11:19:59 +0100
commit26a0e352c62889e630a84b0333f4148f740fdd7f (patch)
tree28bee016b1af48733685aa8619ce6f2b5aecc8bf /components/ui.tsx
parent6ddbbe145f70fd76f8c60a2eb86efdebd6768d06 (diff)
added fullwidth prop to Vierkant
Diffstat (limited to 'components/ui.tsx')
-rw-r--r--components/ui.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/ui.tsx b/components/ui.tsx
index 11b9ddd..f57a90a 100644
--- a/components/ui.tsx
+++ b/components/ui.tsx
@@ -12,6 +12,7 @@ export function Vierkant(props: {
children?: ReactNode;
className?: string;
id?: string;
+ fullwidth?: boolean;
}) {
return <a style={{
padding: 24,
@@ -22,7 +23,10 @@ export function Vierkant(props: {
display: "inline-block",
position: "relative",
boxSizing: "border-box",
- width: props.width ? props.width : undefined,
+ width:
+ props.width ? props.width :
+ props.fullwidth ? "calc(100% - 12px)" :
+ undefined,
height: props.height ? props.height : undefined,
...props.style
}} href={props.href} className={props.className} id={props.id}>{props.children}</a>