mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Fix stretched team image on setup/three
closes #6380 - wraps `<img>` element with a `<div>` to workaround buggy browser behaviour (https://github.com/philipwalton/flexbugs/issues/14) - adds explicit `width: 100%` to `img` element to fix Firefox not scaling down to mobile sizes
This commit is contained in:
parent
ad6e37bf79
commit
2335bba40a
2 changed files with 2 additions and 1 deletions
|
@ -415,6 +415,7 @@
|
|||
|
||||
.gh-flow-content .gh-flow-faces {
|
||||
margin-bottom: 2vw;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.gh-flow-content textarea {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<p>Ghost works best when shared with others. Collaborate, get feedback on your posts & work together on ideas.</p>
|
||||
</header>
|
||||
|
||||
<img class="gh-flow-faces" src="{{gh-path 'admin' 'img/users.png'}}" alt="" />
|
||||
<div><img class="gh-flow-faces" src="{{gh-path 'admin' 'img/users.png'}}" alt="" /></div>
|
||||
|
||||
<form class="gh-flow-invite">
|
||||
{{#gh-form-group errors=errors hasValidated=hasValidated property="users"}}
|
||||
|
|
Loading…
Add table
Reference in a new issue