Skip to content

Commit

Permalink
fix: update icons
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanSalt committed May 19, 2023
1 parent 1cd529a commit 6e1a31c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions addons/launcher/src/renderer/LauncherList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ function showLauncherMenu(event: MouseEvent) {
:class="['button', 'more', { active: isAnyActionEnabled }]"
@click="toggleActions"
>
<span class="ph-bold ph-dots-three-vertical"></span>
<span class="ph-bold ph-caret-down"></span>
</div>
</div>
<div v-show="isActionsVisible" class="launcher-actions" @click.stop>
Expand All @@ -174,7 +174,7 @@ function showLauncherMenu(event: MouseEvent) {
@keyup.esc="toggleActions"
>
<span :class="['button', 'edit', { active: isEditing }]" @click="toggleEditing">
<span class="ph-bold ph-pencil-simple"></span>
<span :class="['ph-bold', isEditing ? 'ph-pencil-simple-slash' : 'ph-pencil-simple']"></span>
</span>
</div>
</div>
Expand Down Expand Up @@ -252,6 +252,12 @@ function showLauncherMenu(event: MouseEvent) {
color: rgb(var(--system-yellow));
opacity: 1;
}
.more {
transition: transform 0.2s;
&.active {
transform: rotate(-0.5turn);
}
}
.group-name {
flex: auto;
opacity: 0.5;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/TabList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function resize(startingEvent: DragEvent) {
</SortableList>
<div class="new-tab">
<div v-if="shells.length" class="select-shell anchor" @click="selectShell">
<span class="ph-bold ph-dots-three"></span>
<span class="ph-bold ph-list-plus"></span>
</div>
<div
class="default-shell anchor"
Expand Down

0 comments on commit 6e1a31c

Please sign in to comment.