Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Adjust writer form styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jermainee committed Aug 7, 2023
1 parent dde59c4 commit 63833ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Writer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default class Writer extends Component<{}, IAppState> {
Create SEO optimized blog post drafts using AI
</div>

<div className="notification is-blank">
<div className="writerForm">
<form onSubmit={this.handleFormSubmit}>
<div className="field">
<label className="label">Target keyword</label>
Expand Down
13 changes: 7 additions & 6 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ body {
max-width: 680px !important;
}

.notification.is-blank {
box-shadow: none;
background-color: #fff;
border: 1px solid #dbdbdb;
}

.button.is-dummy, .button.is-dummy:hover {
text-decoration: none;
background-color: #fff;
Expand Down Expand Up @@ -43,6 +37,13 @@ body {
cursor: pointer;
}

.writerForm {
background-color: #fff;
padding: 1.25rem 1.5rem;
border: 1px solid #dbdbdb;
border-radius: 4px;
}

.writerEditor {
height: calc(100vh - 46px);
}
Expand Down

0 comments on commit 63833ab

Please sign in to comment.