In Buddypress, "Media" tab content is cut off at the bottom

Hello, im looking for some help here regarding the image upload and albums being cut off in my Media pages within my profile:

http://www.thecommunitymarket.org/network/members/tcm/media/

I cannot see anything in the Media tab because it is cut off by the page. It’s a theme issue for sure but no one else has this issue for me to troubleshoot.

The theme is a standard WP and Buddypress free theme:
Arcade BasicVersion: 1.0.3
http://bavotasan.com/2014/arcade-premium-wordpress-theme/
By c.bavota

It is theme issue. In your theme, body with .media class has CSS property Overflow set to hidden in style.css line no 5074. You need to add overflow-y property. Apply changes in style.css as shown below

.media,  
.media-body {  
  overflow: hidden;  
  zoom: 1;  
  overflow-y: scroll;  
}