Hey Julianne,
That is possible by filtering the ups-sidebar like this.
function single_post_sidebar( $sidebar ){
if ( is_singular( 'post' ) ) {
return 'ups-sidebar-blog';
}
return $sidebar;
}
add_filter( 'ups_sidebar', 'single_post_sidebar');
The code should be added in functions.php.
Hope that helps.