aria-ease 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ const App = () => {
|
|
|
45
45
|
>
|
|
46
46
|
Display
|
|
47
47
|
</button>
|
|
48
|
-
<div id="custom-menu" role="menu" aria-labelledby="display-button">
|
|
48
|
+
<div id="custom-menu" role="menu" aria-labelledby="display-button" style={{display: 'none', marginTop: '5px'}}>
|
|
49
49
|
<button role="menuitem" className="profile-menu-item">One</button>
|
|
50
50
|
<button role="menuitem" className="profile-menu-item">Two</button>
|
|
51
51
|
<button role="menuitem" className="profile-menu-item">Three</button>
|
|
@@ -84,3 +84,7 @@ const App = () => {
|
|
|
84
84
|
|
|
85
85
|
export default App
|
|
86
86
|
```
|
|
87
|
+
|
|
88
|
+
### P.S.
|
|
89
|
+
|
|
90
|
+
Make sure to add element focus styling in css otherwise visibility might be impacted.
|