chore: fix copy-button / aside overlap #744

This commit is contained in:
Ward Bell 2016-03-08 19:38:55 -08:00
parent 3f4ee37c4e
commit 2cfa6f3eef
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ angularIO.directive('copyContainer', function() {
restrict: 'E',
transclude: true,
template:
'<div style="position: relative">' +
'<copy-button style="position: absolute; top: 10px; right: 0px; z-index: 1" ></copy-button>' +
'<div style="position: relative; overflow: auto;">' +
'<copy-button style="position: absolute; top: 18px; right: 0px; z-index: 1" ></copy-button>' +
'<ng-transclude></ng-transclude>' +
'</div>'
};