Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function Feedback({ className }: IFeedbackProps) {
/>
<div className='mt-4 block text-sm lg:flex lg:flex-row'>
<button
className='w-full rounded bg-primary-500 py-2 text-white shadow-md transition-all duration-500 ease-in-out hover:shadow-lg lg:w-6/12'
className='w-full rounded bg-primary-500 py-2 text-white shadow-md transition-all duration-500 ease-in-out hover:bg-primary-400 hover:shadow-lg lg:w-6/12'
type='submit'
>
Submit feedback
Expand Down
2 changes: 1 addition & 1 deletion components/buttons/GitHubIssue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function GitHubIssue({ className = '' }) {
return (
<a
className={`flex flex-row justify-center rounded bg-black py-2 text-white
shadow-md transition-all duration-500 ease-in-out hover:shadow-lg lg:w-6/12 ${className}`}
shadow-md transition-all duration-500 ease-in-out hover:bg-gray-700 hover:shadow-lg lg:w-6/12 ${className}`}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Gorachand-Senapati do we really need to add hover 2 times? don't you think it is duplicated, and should be used only once.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@princerajpoot20 ok I fix it

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@princerajpoot20 please Review the latest pr

href='https://github.com/asyncapi/website/issues/new/choose'
target='_blank'
rel='noopener noreferrer'
Expand Down