Skip to content

Commit

Permalink
Finish addressing Kirill's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
andytudhope committed Jun 24, 2022
1 parent e45d433 commit 89a2c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/dapp/src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Footer = () => {
className='flex flex-row gap-2 items-center'
>
<div
className='cursor-pointer hover:text-gray-800 border-b-2'
className='cursor-pointer text-gray-800 hover:underline border-b-2'
onClick={() => window.open('/essay#free-sign', '_self')}
>
sign freely
Expand All @@ -35,7 +35,7 @@ const Footer = () => {
/
</div>
<div
className='cursor-pointer hover:text-gray-800 border-b-2'
className='cursor-pointer text-gray-800 hover:underline border-b-2'
onClick={() => slider.dispatch({ type: 'open' })}
>
mint a seal
Expand Down
4 changes: 2 additions & 2 deletions packages/dapp/src/components/common/ExecutionButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { motion } from 'framer-motion'
import Spinner from './Spinner'
const styles = {
green: {
main: 'sm:w-32 sm:px-4 sm:py-2 w-24 px-2 py-1 bg-green-600 shadow shadow-green-300 transition-all hover:shadow-md hover:text-green-50 hover:shadow-green-500 text-green-300 border-2 border-transparent rounded-md cursor-pointer flex justify-center',
disabled: 'sm:w-32 sm:px-4 sm:py-2 w-24 px-2 py-1 bg-gray-600 shadow shadow-green-300 transition-all hover:shadow-md hover:text-green-50 hover:shadow-green-500 text-green-300 border-2 border-transparent rounded-md cursor-wait flex justify-center'
main: 'sm:w-32 sm:px-4 sm:py-2 w-24 px-2 py-1 border-gray-600 transition-all hover:border-black text-black border-2 rounded-md cursor-pointer flex justify-center',
disabled: 'sm:w-32 sm:px-4 sm:py-2 w-24 px-2 py-1 bg-gray-600 transition-all text-white border-2 border-transparent rounded-md cursor-wait flex justify-center'
},
basic: {
main: 'sm:w-32 sm:px-4 sm:py-2 w-24 px-2 py-1 border-2 border-gray-200 rounded-md hover:border-gray-400 transition-all cursor-pointer flex justify-center',
Expand Down

0 comments on commit 89a2c3a

Please sign in to comment.