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/Guestbook.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/Guestbook.jsx')
| -rw-r--r-- | src/components/Guestbook.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Guestbook.jsx b/src/components/Guestbook.jsx index 5935d04..f839848 100644 --- a/src/components/Guestbook.jsx +++ b/src/components/Guestbook.jsx @@ -73,8 +73,8 @@ class Guestbook extends Component { ))} </div> )} - {page > 1 && <button class="margin" onClick={this.handlePrevious}>Previous</button>} - {page < totalPages && <button class="margin" onClick={this.handleNext}>Next</button>} + {page > 1 && <button class="button margin" onClick={this.handlePrevious}>Previous</button>} + {page < totalPages && <button class="button margin" onClick={this.handleNext}>Next</button>} </div> ); } |
