1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-05 00:42:14 +03:00

Fixed long attachment names breaking outer boxes

Closes #460
This commit is contained in:
Dan Brown
2017-09-02 15:21:05 +01:00
parent 1c9ecc3edd
commit 70ee28ee13

View File

@@ -198,6 +198,10 @@
.body, p.empty-text { .body, p.empty-text {
padding: $-m; padding: $-m;
} }
a {
word-wrap: break-word;
word-break: break-word;
}
} }
.card.drag-card { .card.drag-card {
@@ -242,6 +246,7 @@
} }
> div { > div {
padding: 0 $-s; padding: 0 $-s;
max-width: 80%;
} }
} }