diff options
author | David Yip <yipdw@member.fsf.org> | 2018-01-18 10:25:54 -0600 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-01-18 10:25:54 -0600 |
commit | 3896cd5d79d8b46473b935b00caf31ef943fb21d (patch) | |
tree | 97878b30e34fb239f998b1813edf5764123f3c5c /app/javascript/styles | |
parent | bcd86404daf90b120eeb339f0cfeee7a6c25dd94 (diff) |
Use absolute paths for new working/not-found SVGs
This allows these component styles to be used in i.e. the win95 skin.
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 4ac0deea1..d13a18ad7 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2323,7 +2323,7 @@ } &__figure { - background: url('../images/elephant_ui_working.svg') no-repeat center 0; + background: url('~images/elephant_ui_working.svg') no-repeat center 0; width: 100%; height: 160px; background-size: contain; @@ -2337,7 +2337,7 @@ padding-top: 20px + 48px; .regeneration-indicator__figure { - background-image: url('../images/elephant_ui_disappointed.svg'); + background-image: url('~images/elephant_ui_disappointed.svg'); } } |