mirror of
https://github.com/pinry/pinry.git
synced 2026-01-14 19:22:05 +01:00
Fix: Fix loader loading error
This commit is contained in:
committed by
Isaac Bythewood
parent
09e46cc907
commit
c59fa32f1f
@@ -248,7 +248,7 @@ $avatar-height: 30px;
|
||||
> img {
|
||||
background-color: white;
|
||||
border-radius: 3px 3px 0 0;
|
||||
@include loader;
|
||||
@include loader('../assets/loader.gif');
|
||||
}
|
||||
.avatar {
|
||||
height: $avatar-height;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@mixin loader {
|
||||
background: url('/assets/loader.gif');
|
||||
@mixin loader($loaderGifURL) {
|
||||
background: url(#{$loaderGifURL});
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user