Skip to content

Commit

Permalink
release: 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
SadraTghvi committed Oct 4, 2024
1 parent e5e85e5 commit d345af9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.5
1.0.6
2 changes: 1 addition & 1 deletion app/pages/style/projects.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
justify-content: center;
flex-direction: column;

color: var(--accent-color);
color: white;

transform: translateY(2em);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.8",
"concurrently": "^8.2.2",
"concurrently": "^9.0.1",
"sass": "^1.77.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
Expand Down
6 changes: 3 additions & 3 deletions src/api/blog/ssr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fn Multiline(value: String) -> Element {
#[component]
fn BlogCard(blog: Blog) -> Element {
rsx! {
figure {
article {
if let Some(t) = &blog.thumbnail {
img {
decode: "async",
Expand All @@ -98,7 +98,7 @@ fn BlogCard(blog: Blog) -> Element {
}
}

p { "{blog.title}" }
h2 { "{blog.title}" }

div {
span {
Expand All @@ -113,7 +113,7 @@ fn BlogCard(blog: Blog) -> Element {
}
}

figcaption { Multiline { value: blog.detail.clone() } }
p { Multiline { value: blog.detail.clone() } }
a { href: "/blogs/{blog.slug}/", "دیدن بیشتر" }
}
}
Expand Down

0 comments on commit d345af9

Please sign in to comment.