about summary refs log tree commit diff
path: root/app/javascript/styles/mastodon
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2021-02-11 10:18:56 +0900
committerGitHub <noreply@github.com>2021-02-11 02:18:56 +0100
commitd499bb031f0d20a5f27facfd57cf4e00f89003d7 (patch)
tree4f3b173c5141722636318d76db7ba0e2655a3d94 /app/javascript/styles/mastodon
parent6feaad33f22060cc113890325ef1802378b6f27b (diff)
Use custom mascot on static share page (#15687)
* Use custom mascot on static share page

* Use full_asset_url
Diffstat (limited to 'app/javascript/styles/mastodon')
-rw-r--r--app/javascript/styles/mastodon/modal.scss13
1 files changed, 11 insertions, 2 deletions
diff --git a/app/javascript/styles/mastodon/modal.scss b/app/javascript/styles/mastodon/modal.scss
index 962ed1ef5..6c6de4206 100644
--- a/app/javascript/styles/mastodon/modal.scss
+++ b/app/javascript/styles/mastodon/modal.scss
@@ -12,10 +12,19 @@
   flex-direction: column;
   justify-content: flex-end;
 
-  > * {
+  > div {
     flex: 1;
     max-height: 235px;
-    background: url('../images/elephant_ui_plane.svg') no-repeat left bottom / contain;
+    position: relative;
+
+    img {
+      max-height: 100%;
+      max-width: 100%;
+      height: 100%;
+      position: absolute;
+      bottom: 0;
+      left: 0;
+    }
   }
 }