Skip to content

Commit 474ce11

Browse files
committed
clean up a bit
1 parent 42c551a commit 474ce11

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

src/Cards.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ export default {
8787
data () {
8888
return {
8989
repos : repos,
90-
languages : languages,
91-
apis : apis
90+
languages : languages, // used in filter by language
91+
apis : apis // used in filter by api used
9292
}
9393
},
9494

src/styles/main.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body {
1818
}
1919
a {
2020
text-decoration: none;
21-
color: black;
21+
color: #404040;
2222
}
2323
a:hover {
2424
color: #EE8822;
@@ -35,7 +35,7 @@ li {
3535
}
3636
li a {
3737
display: block;
38-
color: black;
38+
color: #404040;
3939
text-align: center;
4040
padding: 24px 16px;
4141
text-decoration: none;

webpack.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,7 @@ module.exports = {
2828
},
2929
{
3030
test: /\.(eot|svg|ttf|woff|woff2)(\?\S*)?$/,
31-
loader: 'file',
32-
query: {
33-
outputStyle: 'expanded',
34-
includePaths: [
35-
path.resolve(process.cwd(), "node_modules")
36-
]
37-
}
31+
loader: 'file'
3832
},
3933
{
4034
test: /\.(png|jpe?g|gif|svg)(\?\S*)?$/,

0 commit comments

Comments
 (0)