Individual document sharing with permissions (#5814)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Tom Moor <tom@getoutline.com>
This commit is contained in:
@@ -2,7 +2,7 @@ import styled, { css } from "styled-components";
|
||||
|
||||
type Props = {
|
||||
type?: "secondary" | "tertiary" | "danger";
|
||||
size?: "large" | "small" | "xsmall";
|
||||
size?: "xlarge" | "large" | "medium" | "small" | "xsmall";
|
||||
dir?: "ltr" | "rtl" | "auto";
|
||||
selectable?: boolean;
|
||||
weight?: "bold" | "normal";
|
||||
@@ -24,8 +24,12 @@ const Text = styled.p<Props>`
|
||||
? props.theme.brand.red
|
||||
: props.theme.text};
|
||||
font-size: ${(props) =>
|
||||
props.size === "large"
|
||||
props.size === "xlarge"
|
||||
? "26px"
|
||||
: props.size === "large"
|
||||
? "18px"
|
||||
: props.size === "medium"
|
||||
? "16px"
|
||||
: props.size === "small"
|
||||
? "14px"
|
||||
: props.size === "xsmall"
|
||||
|
||||
Reference in New Issue
Block a user