Skip to content

Commit eb1c7e9

Browse files
author
Guillaume Chau
committed
fix(ui): CSS fixes
1 parent d3924bd commit eb1c7e9

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

packages/@vue/cli-ui-addon-webpack/src/components/BuildProgress.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default {
141141
.wrapper::after
142142
transition opacity .2s
143143
.vue-ui-icon
144-
transition visibility 0
144+
transition opacity 0
145145
&.v-enter-active
146146
.wrapper::after,
147147
.vue-ui-icon
@@ -153,7 +153,7 @@ export default {
153153
opacity 0
154154
&.v-enter
155155
.vue-ui-icon
156-
visibility hidden
156+
opacity 0
157157
&.v-leave-to
158158
opacity 0
159159
</style>

packages/@vue/cli-ui-addon-webpack/src/components/WebpackAnalyzer.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,13 @@ export default {
320320
321321
.content
322322
display flex
323-
flex-direction row
323+
flex-direction column
324324
position relative
325325
326326
.donut
327327
width 100%
328+
flex auto 1 1
329+
height 0
328330
&.hover
329331
cursor pointer
330332

packages/@vue/cli-ui/src/views/ProjectConfigurations.vue

+9
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,12 @@ export default {
6363
}
6464
}
6565
</script>
66+
67+
<style lang="stylus" scoped>
68+
@import "~@/style/imports"
69+
70+
.project-configurations
71+
.content-view /deep/ > .content
72+
overflow-y hidden
73+
</style>
74+

packages/@vue/cli-ui/src/views/ProjectPlugins.vue

+8
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,11 @@ export default {
5353
}
5454
}
5555
</script>
56+
57+
<style lang="stylus" scoped>
58+
@import "~@/style/imports"
59+
60+
.project-plugins
61+
.content-view /deep/ > .content
62+
overflow-y auto
63+
</style>

packages/@vue/cli-ui/src/views/ProjectTaskDetails.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export default {
306306
border-radius $br
307307
308308
.content
309-
flex 100% 1 1
309+
flex auto 1 1
310310
height 0
311311
margin 0 $padding-item $padding-item
312312
position relative

0 commit comments

Comments
 (0)