fix: scrolling in usage details

This commit is contained in:
neri 2023-02-11 00:37:58 +01:00
parent 0a469ae367
commit c33cece59e
3 changed files with 9 additions and 2 deletions

2
Cargo.lock generated
View File

@ -424,7 +424,7 @@ dependencies = [
[[package]]
name = "datatrash"
version = "2.2.0"
version = "2.2.1"
dependencies = [
"actix-files",
"actix-governor",

View File

@ -1,6 +1,6 @@
[package]
name = "datatrash"
version = "2.2.0"
version = "2.2.1"
authors = ["neri"]
edition = "2021"

View File

@ -73,6 +73,13 @@ textarea,
details {
display: inline;
max-width: 100%;
}
details > pre {
margin: 0;
padding: 1rem 0.5rem;
overflow-x: scroll;
}
details summary {