diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-06 20:00:14 +0000 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-06 20:00:33 +0000 |
| commit | ccd810f3e080ea2717772850647efb06df074c32 (patch) | |
| tree | 135dc1a95827a7dc1ade47eb6d6bb5b852320ba9 /src/components/GuestbookForm.jsx | |
| parent | bf7ebfa81791703959015c9b1b8ddbc4edae5ee3 (diff) | |
| download | personal-website-ccd810f3e080ea2717772850647efb06df074c32.tar.gz personal-website-ccd810f3e080ea2717772850647efb06df074c32.tar.bz2 personal-website-ccd810f3e080ea2717772850647efb06df074c32.zip | |
Fixed css in navbar mobile
Diffstat (limited to 'src/components/GuestbookForm.jsx')
| -rw-r--r-- | src/components/GuestbookForm.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/GuestbookForm.jsx b/src/components/GuestbookForm.jsx index 48e043b..8573b5c 100644 --- a/src/components/GuestbookForm.jsx +++ b/src/components/GuestbookForm.jsx @@ -71,7 +71,7 @@ class GuestbookForm extends Component { <label htmlFor="message">Message * (Supports <a href="https://www.markdownguide.org/cheat-sheet/" target="_blank">Markdown</a>)</label> <textarea name="message" placeholder="Enter your message here." required value={this.state.message} onChange={this.handleChange} disabled={this.state.isMessageSent}></textarea> - <button type="submit" disabled={this.state.isMessageSent}>Send</button> + <button class="button" type="submit" disabled={this.state.isMessageSent}>Send</button> </form> {this.state.errorMessage && <p dangerouslySetInnerHTML={{__html: this.state.errorMessage}}/>} {this.state.isMessageSent && !this.state.errorMessage && <p>Sent successfully!</p>} |
