Fix word break

feature/epub-rendering
trivernis 4 years ago
parent 14ff4146e9
commit 108bcb26d5

2
Cargo.lock generated

@ -571,7 +571,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "snekdown" name = "snekdown"
version = "0.18.0" version = "0.18.1"
dependencies = [ dependencies = [
"charred 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "charred 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",

@ -1,6 +1,6 @@
[package] [package]
name = "snekdown" name = "snekdown"
version = "0.18.0" version = "0.18.1"
authors = ["trivernis <trivernis@protonmail.com>"] authors = ["trivernis <trivernis@protonmail.com>"]
edition = "2018" edition = "2018"
license-file = "LICENSE" license-file = "LICENSE"

@ -2,6 +2,7 @@ body {
background-color: #DDD; background-color: #DDD;
overflow-x: hidden; overflow-x: hidden;
color: #000; color: #000;
word-break: break-word;
} }
.content { .content {

Loading…
Cancel
Save