Skip to content

Commit

Permalink
Update dependencies and make blockquotes prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjunetime committed Jan 29, 2024
1 parent 9ffac38 commit 1c51ce5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions shared_data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ edition = "2021"
[dependencies]
chrono = { version = "0.4.31", default-features = false, features = ["alloc"] }
pulldown-cmark = { version = "0.9.3", default-features = false, features = ["simd"] }
serde = { version = "1.0.183", default-features = false, features = ["serde_derive"] }
serde = { version = "1.0.183", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.108", default-features = false, features = ["alloc"] }
sqlx = { version = "0.7.3", default-features = false, features = ["macros", "postgres", "runtime-tokio-rustls"], optional = true }
sqlx = { version = "0.7.3", default-features = false, features = ["macros", "postgres"], optional = true }
syntect = { version = "5.1.0", default-features = false, features = ["default-themes", "parsing", "default-syntaxes", "html", "regex-fancy"] }

[features]
Expand Down
6 changes: 6 additions & 0 deletions shared_data/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ code {
pre > code {
padding: 0px;
}
blockquote {
opacity: 0.8;
border-left: 3px solid var(--border-color);
padding-left: 20px;
margin-left: 0px;
}
"#;

pub static POST_LIST_STYLE: &str = r"
Expand Down

0 comments on commit 1c51ce5

Please sign in to comment.