mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
23537355b6
no issue - Adds live preview of members.js modal UI to the new settings modal behind dev flag - Uses `gh-site-iframe` to render site in preview mode with custom portal url
15 lines
317 B
Handlebars
15 lines
317 B
Handlebars
<iframe id="site-frame" class="site-frame" src="{{this.srcUrl}}" frameborder="0" allowtransparency="true"></iframe>
|
|
|
|
<style>
|
|
.site-frame {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
</style> |