Skip to content

Commit 95083e5

Browse files
committed
refactor: change background color for cards
1 parent d7865a1 commit 95083e5

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

docs/app/pages/Home/HomeEcosystem.vue

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<md-card md-with-hover class="md-elevation-2 full-height">
1111
<div class="content">
1212
<div class="md-title">Advanced Webpack SPA</div>
13-
<p>A full-featured Webpack + Vue Material setup with hot-reload, lint-on-save, unit testing & css extraction.</p>
13+
<p>A full-featured Webpack + Vue Material setup with hot-reload, lint-on-save, unit testing, scss preprocessing & css extraction.</p>
1414
</div>
15-
<div class="image">
15+
<div class="image webpack">
1616
<img src="/assets/boilerplates/webpack-advanced.png" alt="webpack">
1717
</div>
1818
</md-card>
@@ -23,7 +23,7 @@
2323
<div class="md-title">NuxtJs Universal</div>
2424
<p>Nuxt.js is a framework for creating Universal Vue.js Applications. All the configuration needed to make your development of a Vue.js Application Server Rendered more enjoyable.</p>
2525
</div>
26-
<div class="image">
26+
<div class="image nuxt">
2727
<img src="/assets/boilerplates/nuxt.png" alt="nuxtjs">
2828
</div>
2929
</md-card>
@@ -89,11 +89,16 @@
8989
margin: 16px -16px -16px -16px;
9090
max-height: 200px;
9191
overflow: hidden;
92-
background: #f8f8f8;
9392
text-align: center;
9493
img {
9594
max-height: 180px;
9695
}
96+
&.nuxt {
97+
background: #64D1A1;
98+
}
99+
&.webpack {
100+
background: #8ED6FB;
101+
}
97102
}
98103
&.flying {
99104
img {

0 commit comments

Comments
 (0)