Skip to content

Commit

Permalink
Update FAQs.vue
Browse files Browse the repository at this point in the history
transition to left border
  • Loading branch information
snoopy0328 committed Dec 2, 2023
1 parent 9fb4bbb commit ccfa2e1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/web/src/pages/FAQs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ h1 {
padding: 10px;
cursor: pointer;
border-left: 3px solid transparent;
transition: border-left 0.2s linear; /* Move this line here */
}
.faq-item.open {
Expand All @@ -110,6 +111,9 @@ h1 {
cursor: pointer;
font-weight: bold;
}
.faq-item h3:hover {
border-left: none;
}
.divider {
height: 1px;
Expand Down Expand Up @@ -155,5 +159,4 @@ h1 {
transition: transform 0.3s ease;
}
</style>

</style>

0 comments on commit ccfa2e1

Please sign in to comment.