Merge pull request #2611 from nextcloud/bugfix/2504

Fix paragraph styling in comments
This commit is contained in:
Julius Härtl
2020-11-24 12:38:25 +01:00
committed by GitHub

View File

@@ -196,7 +196,13 @@ export default {
}
}
.comment--content::v-deep a {
text-decoration: underline;
.comment--content::v-deep {
a {
text-decoration: underline;
}
p {
margin-bottom: 1em;
}
}
</style>