diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-01-02 15:26:36 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-01-02 15:36:59 +0100 |
commit | 1b35ca17a9f214bbc4fc577baa7a86b567b2f629 (patch) | |
tree | e47d9b05b91e24b84c9605954934e83bff9e4303 /app/javascript | |
parent | eb481c904913d5ad44c074524b0381ec3e9b7fda (diff) |
Fix some image paths in SCSS files
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/modal.scss | 2 | ||||
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/modal.scss b/app/javascript/flavours/glitch/styles/components/modal.scss index dc26ca3b5..3598959e7 100644 --- a/app/javascript/flavours/glitch/styles/components/modal.scss +++ b/app/javascript/flavours/glitch/styles/components/modal.scss @@ -798,7 +798,7 @@ width: 100px; height: 100px; transform: translate(-50%, -50%); - background: url('~/images/reticle.png') no-repeat 0 0; + background: url('~images/reticle.png') no-repeat 0 0; border-radius: 50%; box-shadow: 0 0 0 9999em rgba($base-shadow-color, 0.35); } diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index eaf25e787..da66ccd95 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -5257,7 +5257,7 @@ noscript { width: 100px; height: 100px; transform: translate(-50%, -50%); - background: url('~/images/reticle.png') no-repeat 0 0; + background: url('~images/reticle.png') no-repeat 0 0; border-radius: 50%; box-shadow: 0 0 0 9999em rgba($base-shadow-color, 0.35); } |