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:
parent
e76a62b34a
commit
93e7376403
3 changed files with 7 additions and 2 deletions
|
@ -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);
|
||||
}
|
|
@ -167,7 +167,8 @@ export default class App extends React.Component {
|
|||
|
||||
const iFrameStyles = {
|
||||
border: 'none',
|
||||
width: '100%'
|
||||
width: '100%',
|
||||
height: '420px'
|
||||
};
|
||||
|
||||
return (
|
||||
|
|
|
@ -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?" />
|
||||
|
|
Loading…
Add table
Reference in a new issue