Hello Jason,
What you can do is you need to copy all the customization in both files (style.min.css and more.min.css) and revert it back to the original. You can use this documentation as a guide:
http://docs.stackideas.com/administrators/templating/template_overrides . You also can follow these steps:-
1. After that, create the styles folder in /templates/YOUR_JOOMLA_TEMPLATE/html/com_easysocial/styles.
2. Create your own style.css in the folder that you just created above.
3. Inside the style.css must have 3 @import before override the styling..
@import "/components/com_easysocial/themes/wireframe/styles/base.min.css";
@import "/components/com_easysocial/themes/wireframe/styles/style.min.css";
@import "/components/com_easysocial/themes/wireframe/styles/more.min.css";
4. Paste all the customization that you have done in both files here.
/*Easysocial custom styles*/
body div#fd.es .es-stream-meta .es-stream-title {
font-size: 11px;
}
By doing this, all your customization will not get override if you update EasySocial. If you have anymore question or encounter problems, please don't hesitate to ask us.
Looking forward to hear from you again.
Thanks.