app: remove 'condensed' variant
This commit is contained in:
@@ -38,7 +38,6 @@ export const Alert = (props: AlertProps) => {
|
|||||||
<div class={styles.alertContent}>
|
<div class={styles.alertContent}>
|
||||||
<Typography
|
<Typography
|
||||||
hierarchy="body"
|
hierarchy="body"
|
||||||
family="condensed"
|
|
||||||
size={titleSize()}
|
size={titleSize()}
|
||||||
weight="bold"
|
weight="bold"
|
||||||
color="inherit"
|
color="inherit"
|
||||||
@@ -46,12 +45,7 @@ export const Alert = (props: AlertProps) => {
|
|||||||
{props.title}
|
{props.title}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Show when={props.description}>
|
<Show when={props.description}>
|
||||||
<Typography
|
<Typography hierarchy="body" size={bodySize()} color="inherit">
|
||||||
hierarchy="body"
|
|
||||||
family="condensed"
|
|
||||||
size={bodySize()}
|
|
||||||
color="inherit"
|
|
||||||
>
|
|
||||||
{props.description}
|
{props.description}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Show>
|
</Show>
|
||||||
|
|||||||
@@ -126,7 +126,6 @@ export const Select = (props: SelectProps) => {
|
|||||||
hierarchy="label"
|
hierarchy="label"
|
||||||
size="s"
|
size="s"
|
||||||
weight="bold"
|
weight="bold"
|
||||||
family="condensed"
|
|
||||||
in="Select-item-label"
|
in="Select-item-label"
|
||||||
>
|
>
|
||||||
{props.item.rawValue.label}
|
{props.item.rawValue.label}
|
||||||
@@ -142,7 +141,6 @@ export const Select = (props: SelectProps) => {
|
|||||||
hierarchy="label"
|
hierarchy="label"
|
||||||
size="s"
|
size="s"
|
||||||
weight="bold"
|
weight="bold"
|
||||||
family="condensed"
|
|
||||||
color="secondary"
|
color="secondary"
|
||||||
in="Select-item-label"
|
in="Select-item-label"
|
||||||
>
|
>
|
||||||
@@ -157,7 +155,6 @@ export const Select = (props: SelectProps) => {
|
|||||||
hierarchy="label"
|
hierarchy="label"
|
||||||
size="s"
|
size="s"
|
||||||
weight="normal"
|
weight="normal"
|
||||||
family="condensed"
|
|
||||||
color="secondary"
|
color="secondary"
|
||||||
in="Select-item-label"
|
in="Select-item-label"
|
||||||
>
|
>
|
||||||
@@ -170,7 +167,6 @@ export const Select = (props: SelectProps) => {
|
|||||||
hierarchy="label"
|
hierarchy="label"
|
||||||
size="s"
|
size="s"
|
||||||
weight="bold"
|
weight="bold"
|
||||||
family="condensed"
|
|
||||||
in="Select-item-label"
|
in="Select-item-label"
|
||||||
>
|
>
|
||||||
{root.placeholder}
|
{root.placeholder}
|
||||||
@@ -202,7 +198,6 @@ export const Select = (props: SelectProps) => {
|
|||||||
hierarchy="label"
|
hierarchy="label"
|
||||||
size="s"
|
size="s"
|
||||||
weight="bold"
|
weight="bold"
|
||||||
family="condensed"
|
|
||||||
in="Select-item-label"
|
in="Select-item-label"
|
||||||
>
|
>
|
||||||
{state.selectedOption().label}
|
{state.selectedOption().label}
|
||||||
|
|||||||
Reference in New Issue
Block a user