diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2017-09-14 15:29:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-14 15:29:10 +0200 |
commit | fc5528fda315605fa7fef1429cefd290ec830ce2 (patch) | |
tree | 90c5df20f70afc41eef16303fd898109d1a43dca | |
parent | ecd728c3b2ad67ef19d44f177132e39007f226fc (diff) | |
parent | 4e909115be0757e2569278d27ecfb71daa7e84fc (diff) | |
download | nextcloud-server-fc5528fda315605fa7fef1429cefd290ec830ce2.tar.gz nextcloud-server-fc5528fda315605fa7fef1429cefd290ec830ce2.zip |
Merge pull request #6497 from nextcloud/fix-loading-icon-size
Fix loading icon size
-rw-r--r-- | core/css/icons.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/css/icons.scss b/core/css/icons.scss index b2702a29950..38b4590e43f 100644 --- a/core/css/icons.scss +++ b/core/css/icons.scss @@ -30,8 +30,8 @@ &:after { z-index: 2; content: ''; - height: 30px; - width: 30px; + height: 28px; + width: 28px; margin: -16px 0 0 -16px; position: absolute; top: 50%; @@ -55,8 +55,8 @@ .icon-loading-small:after, .icon-loading-small-dark:after { - height: 14px; - width: 14px; + height: 12px; + width: 12px; margin: -8px 0 0 -8px; } |