-
The gist embed works very good. But I dislike the horizontal lines between each line of code, it's quite distracting to me. How can I disable the horizontal lines between lines of code? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thanks for the question. This behaviour is because the gist embed inserts its contents as a HTML table and Congo styles table rows with a bottom border. If you don't want this behaviour, add some custom CSS to your project to remove the border. Something like this should do the trick: .gist table tr {
border-bottom: none;
} |
Beta Was this translation helpful? Give feedback.
Thanks for the question. This behaviour is because the gist embed inserts its contents as a HTML table and Congo styles table rows with a bottom border. If you don't want this behaviour, add some custom CSS to your project to remove the border. Something like this should do the trick: