Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/app
diff options
context:
space:
mode:
authorbinsky <timo@binsky.org>2021-08-23 16:37:54 +0300
committerbinsky <timo@binsky.org>2021-08-23 16:37:54 +0300
commitcae98cfa8dab9ea754ee0136ba5f9de1db91c215 (patch)
treed35b6babad556759075c779d1d7384576fca928b /js/app
parent017e38e62c2870dcdbf03dbfabaf2ad831ed6484 (diff)
fix icon style for productive nextcloud instances
Signed-off-by: binsky <timo@binsky.org>
Diffstat (limited to 'js/app')
-rw-r--r--js/app/directives/icon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/app/directives/icon.js b/js/app/directives/icon.js
index 646dec01..72efc923 100644
--- a/js/app/directives/icon.js
+++ b/js/app/directives/icon.js
@@ -32,7 +32,7 @@
angular.module('passmanApp').directive('credentialIcon', [
'$window', function($window) {
return {
- template: '<img ng-src="{{ iconUrl }}" class="icon-image">',
+ template: '<img ng-src="{{ iconUrl }}" class="icon-image-size">',
restrict: 'E',
scope: {
credential: '=',
@@ -55,4 +55,4 @@
}
};
}]);
-}()); \ No newline at end of file
+}());