Skip to content

Commit 48fa5d1

Browse files
concise ui elements (#29)
1 parent 6017c3f commit 48fa5d1

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
ps:
2-
podman compose ps
2+
docker compose ps
33

44
up:
5-
podman compose up --build -d
5+
docker compose up --build -d
66

77
down:
8-
podman compose down --remove-orphans --volumes
8+
docker compose down --remove-orphans --volumes
99

1010
sh%:
11-
podman compose exec -it $* sh
12-
11+
docker compose exec -it $* sh

frontend/src/features/home-page/components/article-card-vertical/card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function VerticalArticleCard({article}: Props) {
3939
>
4040
{article.title}
4141
</Text>
42-
<Text size="sm" c={"dimmed"} mt={5} mb="md" lineClamp={1}>
42+
<Text size="sm" c={"dimmed"} mt={5} mb="md" lineClamp={3}>
4343
{article.subtitle}
4444
</Text>
4545
<Group wrap="nowrap" gap={5} c={"dimmed"}>

frontend/src/features/home-page/components/featured-articles/featured-articles.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function FeaturedArticles() {
2222
<GridCol
2323
span={{
2424
base: 12,
25-
md: 6,
25+
md: 8,
2626
}}
2727
>
2828
<h2 className={classes.headingWithBorder}>
@@ -48,7 +48,7 @@ export async function FeaturedArticles() {
4848
<GridCol
4949
span={{
5050
base: 12,
51-
md: 6,
51+
md: 4,
5252
}}
5353
>
5454
<h2 className={classes.headingWithBorder}>

0 commit comments

Comments
 (0)