Skip to content

Commit c32f785

Browse files
committed
fix: arrows disappeared! :(
1 parent bf5db9e commit c32f785

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

packages/app-frontend/src/assets/style/index.postcss

+12
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,15 @@ html, body, #app {
112112
}
113113
}
114114
}
115+
116+
/* Arrows */
117+
118+
.arrow {
119+
@apply inline-block w-0 h-0 transition-transform duration-150 ease-out text-gray-500;
120+
121+
&.right {
122+
border-top: 4px solid transparent;
123+
border-bottom: 4px solid transparent;
124+
border-left: 6px solid currentColor;
125+
}
126+
}

packages/app-frontend/src/assets/style/index.styl

+2-3
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,16 @@ button:focus
4545
&.active
4646
background-color $active-color
4747
color #fff
48+
.item-name,
4849
.arrow
49-
border-left-color #fff
50-
.item-name
5150
color #fff
5251

5352
.vue-ui-dark-mode &
5453
background-color $dark-background-color
5554
&:hover
5655
background-color $dark-hover-color
5756
.arrow
58-
border-left-color #666
57+
color theme('colors.gray.600')
5958
&.selected,
6059
&.active
6160
color #fff

0 commit comments

Comments
 (0)