0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Updated iframe size

This commit is contained in:
Peter Zimon 2022-07-05 10:43:10 +02:00
parent e76a62b34a
commit 93e7376403
3 changed files with 7 additions and 2 deletions

View file

@ -592,4 +592,9 @@ video {
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.filter {
-webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

View file

@ -167,7 +167,8 @@ export default class App extends React.Component {
const iFrameStyles = {
border: 'none',
width: '100%'
width: '100%',
height: '420px'
};
return (

View file

@ -73,7 +73,6 @@ class Form extends React.Component {
Add a bio
</span>
</div>
</div>
<textarea className="w-full rounded-md border p-2" value={this.state.message} onChange={this.handleChange} placeholder="What are your thoughts?" />