You would need to add the tag class, which is qa-q-view-tag-item.
Go to the file qa-plugin/tag-cloud-widget/qa-tag-cloud.php. On line 142 where you see:
$themeobject->output('<A HREF="'.qa_path_html('tag/'.$tag).'" STYLE="font-size:'.$size.'px; vertical-align:baseline;">'.qa_html($tag).'</A>');
Change that to:
$themeobject->output('<A HREF="'.qa_path_html('tag/'.$tag).'" CLASS="qa-q-view-tag-item">'.qa_html($tag).'</A>');
P.S. I also made a simple tag list plugin here, which shows the tags in a column with their count, like Stack Overflow.