Skip to content

Commit

Permalink
adds Skillit to portfoloio
Browse files Browse the repository at this point in the history
  • Loading branch information
kanehara committed Jun 4, 2020
1 parent f906731 commit dff0215
Show file tree
Hide file tree
Showing 4 changed files with 2,760 additions and 1,514 deletions.
Binary file added assets/Skillit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ export default {
href: "http://www.spotimix.com",
backgroundImage: "assets/Spotimix.png",
description: "A GraphQL webapp to query Spotify's recommendation API"
},
{
name: "Skillit",
href: "https://skillit.io",
backgroundImage: "assets/Skillit.png",
description: "A marketplace for people to share and sell their skills"
}
]
}
Expand Down
11 changes: 7 additions & 4 deletions src/Portfolio/Portfolio.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<div v-for="project in projects" :key="project.id" class="portfolio">
<div class="portfolio">
<div v-for="project in projects" :key="project.id">
<a class="project" target="_blank" :href="project.href" >
<p :style="{ textAlign: 'center', textDecoration: 'none' }">{{ project.description }}</p>
<img
Expand All @@ -20,13 +20,17 @@ export default {

<style lang="scss" scoped>
.portfolio {
display: grid
display: flex;
flex-wrap: wrap;
align-items: center;
}
.project {
padding: 25px;
width: 350px;
margin: 12px;
transition: transform .2s;
display: block;
&:hover {
transform: translateY(-1.5px);
Expand All @@ -39,7 +43,6 @@ export default {
background-position: center;
display: inline-block;
height: 200px;
width: 100%;
border-radius: 15px;
}
}
Expand Down
Loading

0 comments on commit dff0215

Please sign in to comment.