Skip to content

Commit 117be32

Browse files
committed
Fix styles
Styles exist in the custom.css file now rather than a separate CSS file
1 parent 5058ba3 commit 117be32

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/Support/SupportDropdownMenu.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,12 @@ If applicable, add screenshots to help explain your problem.
101101
}, [isOpen]);
102102

103103
return (
104-
<button className={styles.supportDropBtn} onClick={toggleDropdown}>
105-
{isJapanese ? "サポート" : "Support"} <FontAwesomeIcon icon={faChevronDown} fontSize={12} />
104+
<div className="supportDropdown" ref={dropdownRef}>
105+
<button className="supportDropBtn" onClick={toggleDropdown}>
106106
</button>
107107

108108
{isOpen && (
109+
<div className="supportDropdownContent">
109110
<ContactSupportLink />
110111
<hr />
111112
<a href="https://stackoverflow.com/questions/tagged/scalardb" target="_blank">

0 commit comments

Comments
 (0)