Skip to content

Commit

Permalink
fix(ui): nav button bullet border color
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Jun 10, 2018
1 parent 9aec563 commit aee5c93
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/@vue/cli-ui/src/components/ProjectNavButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ export default {
<style lang="stylus" scoped>
@import "~@/style/imports"
$bg = darken($vue-ui-color-dark, 70%)
$bg = $vue-ui-color-light-neutral
$bg-dark = $vue-ui-color-dark
.project-nav-button
position relative
Expand All @@ -91,7 +92,7 @@ $bg = darken($vue-ui-color-dark, 70%)
bottom 12px
left 27px
pointer-events none
border solid 2px $vue-ui-color-dark
border solid 2px $bg
transition border-color .1s
&.type-info
background $vue-ui-color-info
Expand All @@ -105,6 +106,8 @@ $bg = darken($vue-ui-color-dark, 70%)
background $vue-ui-color-accent
&.type-dim
background $md-grey
.vue-ui-dark-mode &
border-color $bg-dark
.wide &
.bullet
Expand All @@ -113,9 +116,13 @@ $bg = darken($vue-ui-color-dark, 70%)
&:hover
.bullet
border-color lighten($bg, 25%)
.vue-ui-dark-mode &
border-color lighten($bg-dark, 25%)
&:active
.bullet
border-color darken($bg, 8%)
.vue-ui-dark-mode &
border-color darken($bg-dark, 8%)
.image-icon
max-width 24px
Expand Down

0 comments on commit aee5c93

Please sign in to comment.