Hide CSS class only in single post pages

This worked for me:

<?php if( is_single() ) : ?>
<style id="my-internal-css">
    .frame-content {
       display: none !important;
    }
</style>
<?php endif; ?>