Hey there,
It seems that you had a template override for it which is at
JoomlaFolder/templates/yourCurrentTempalte/html/com_easyblog/blogs/latest/default.main.php and it uses the old code of EasyBlog.
I had helped you to replace the following PHP code:
<div class="eb-post-foot">
<?php if ($post->hasReadmore() && $this->params->get('post_readmore', true)) { ?>
<div class="col-cell eb-post-more">
<a class="btn btn-default" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>
</div>
<?php } ?>
</div>
with the following PHP code:
<?php if ($post->hasReadmore() && $this->params->get('post_readmore', true)) { ?>
<div class="eb-post-more mt-20">
<a class="btn btn-default" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>
</div>
<?php } ?>
It should be working fine now. Can you have a try and see how it goes?