mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
adjust various font sizes, weights around the app
This commit is contained in:
@@ -108,6 +108,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.row.bold {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
.row.muted {
|
.row.muted {
|
||||||
color: var(--theme-colors-foreground-muted);
|
color: var(--theme-colors-foreground-muted);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1082,11 +1082,13 @@ const ItemCardRow = ({
|
|||||||
return (
|
return (
|
||||||
<Text
|
<Text
|
||||||
className={clsx(styles.row, alignmentClass, {
|
className={clsx(styles.row, alignmentClass, {
|
||||||
|
[styles.bold]: index === 0,
|
||||||
[styles.compact]: type === 'compact',
|
[styles.compact]: type === 'compact',
|
||||||
[styles.default]: type === 'default',
|
[styles.default]: type === 'default',
|
||||||
[styles.muted]: isMuted,
|
[styles.muted]: isMuted,
|
||||||
[styles.poster]: type === 'poster',
|
[styles.poster]: type === 'poster',
|
||||||
})}
|
})}
|
||||||
|
size={index > 0 ? 'sm' : 'md'}
|
||||||
>
|
>
|
||||||
{row.format(data)}
|
{row.format(data)}
|
||||||
</Text>
|
</Text>
|
||||||
|
|||||||
@@ -104,6 +104,7 @@
|
|||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
line-clamp: 2;
|
line-clamp: 2;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
|
font-weight: 800;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
color: var(--theme-colors-foreground);
|
color: var(--theme-colors-foreground);
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
font-weight: 500;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ export const Sidebar = () => {
|
|||||||
>
|
>
|
||||||
<Accordion.Item value="library">
|
<Accordion.Item value="library">
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Text fw={600} variant="secondary">
|
<Text fw={700} variant="secondary">
|
||||||
{t('page.sidebar.myLibrary', {
|
{t('page.sidebar.myLibrary', {
|
||||||
postProcess: 'titleCase',
|
postProcess: 'titleCase',
|
||||||
})}
|
})}
|
||||||
|
|||||||
Reference in New Issue
Block a user