Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat : Added transiton when arow changes it direction. #274

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
10 changes: 9 additions & 1 deletion src/components/TabsBar/TabsBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,15 @@
+
</button>
<button class="tabsbar-toggle" @click="toggleHeight">
<i :class="showMaxHeight ? 'fa fa-chevron-down' : 'fa fa-chevron-up'"></i>
<i
class="fa fa-chevron-up"
:style="
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add css into <style> tags instead of adding inline styles

showMaxHeight
? 'transform: rotate(180deg); transition: transform 0.5s'
: 'transform: rotate(0deg); transition: transform 0.5s'
"
>
</i>
</button>
</div>
<!-- <MessageBox
Expand Down
Loading