diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2021-02-11 10:18:56 +0900 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-02-12 10:57:09 +0100 |
commit | 8f24f7626a46a48004ac15f2253efa30d4540e3a (patch) | |
tree | e9a53785801b2728371ccd9d8b254720b97963cb /app | |
parent | 0e7484209cf7633bacaed28172d718b3b5a27392 (diff) |
[Glitch] Use custom mascot on static share page
Port d499bb031f0d20a5f27facfd57cf4e00f89003d7 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/styles/modal.scss | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/styles/modal.scss b/app/javascript/flavours/glitch/styles/modal.scss index 10de454c6..6c6de4206 100644 --- a/app/javascript/flavours/glitch/styles/modal.scss +++ b/app/javascript/flavours/glitch/styles/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; + } } } |