aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-06-09 22:03:52 +0200
committerHampusM <hampus@hampusmat.com>2021-06-09 22:03:52 +0200
commitde09be1b40a9338eb0e45bede01179a69f00269d (patch)
tree429256f0bb2066537d45742b7ff82edda92d033e
parentd7bfae93b9eeb39786900e22b024b54a678a8c60 (diff)
Improved the RepositoryTreeBlob component
-rw-r--r--packages/client/src/components/RepositoryTreeBlob.vue17
1 files changed, 14 insertions, 3 deletions
diff --git a/packages/client/src/components/RepositoryTreeBlob.vue b/packages/client/src/components/RepositoryTreeBlob.vue
index 4637a84..2a5a6dc 100644
--- a/packages/client/src/components/RepositoryTreeBlob.vue
+++ b/packages/client/src/components/RepositoryTreeBlob.vue
@@ -10,8 +10,7 @@
</tbody>
</table>
<span
- v-else v-html="content_lines"
- class="text-wrap" />
+ v-else v-html="content_lines" />
</template>
<script>
@@ -81,6 +80,8 @@ export default {
</script>
<style lang="scss">
+@use "../scss/colors";
+
@import "~highlight.js/scss/srcery.scss";
@import "../scss/fonts";
@@ -101,6 +102,16 @@ code {
font-family: $font-primary;
}
+span {
+ word-wrap: anywhere;
+ a {
+ color: colors.$primary-light;
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+}
+
.markdown-codeblock {
padding-right: 10px;
padding-left: 5px;
@@ -109,7 +120,7 @@ code {
}
p {
- width: 95ch;
+ max-width: 95ch;
}
</style>