Blogs: Remove the read more button when using list view on index page

When using list view instead of grid view on blog index pages, the entire blog post/article will be shown unless you use the excerpt option:

Adding an excerpt allows you to control what's shown on the blog index page. 

However, if you're not using excerpts, the entire post will be shown including a button at the end which links to the blog post page:

To remove that button, you can use this code modification:

Code:

/* -- code to remove read more button on blog index page -- */
.template-blog .btn.btn--full {display:none;}
/* - end - */

Where do I add the code?

Use this link to learn where exactly to add this code snippet:

Where to add your CSS style code