1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-11 16:44:57 +02:00

Fix incorrect comments

This commit is contained in:
Phuoc Nguyen
2021-04-02 22:12:00 +07:00
parent 5383625ca3
commit a7a07aa660

View File

@@ -44,7 +44,7 @@ css={`
position: relative; position: relative;
} }
/* Hide the dropdown's content by default --> /* Hide the dropdown's content by default */
.dropdown__content { .dropdown__content {
display: none; display: none;
@@ -63,7 +63,7 @@ css={`
width: 200px; width: 200px;
} }
/* Show the content when hover on the container --> /* Show the content when hover on the container */
.dropdown:hover .dropdown__content { .dropdown:hover .dropdown__content {
display: block; display: block;
} }