Skip to content
Open
Changes from all commits
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
7 changes: 4 additions & 3 deletions src/components/NotificationBar/MessageBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,18 @@ export default function MessageBar(props) {
>
<Content />
{localStorageIsEnabled ? (
<div
role="button"
<button
type="button"
className="px-20 self-stretch inline-flex items-center cursor-pointer"
style={{ background: 'none', border: 'none'}}
onClick={close}
>
<CloseIcon
aria-label="Dismiss"
className="fill-current text-gray-300 dark:text-white transform duration-200 hover:text-gray-700"
width={25}
/>
</div>
</button>
) : null}
</animated.div>
))}
Expand Down
Loading