-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from lowsideio/beta
Next release
- Loading branch information
Showing
71 changed files
with
1,300 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
const basePath = 'static/brands'; | ||
const basePath = '/static/brands'; | ||
|
||
const logo = (brand) => { | ||
switch (brand) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<template> | ||
<tr> | ||
<td>Bore</td> | ||
<td>{{ data }}</td> | ||
</tr> | ||
</template> | ||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'Bore', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<template> | ||
<div class="container"> | ||
<div class="illustration" /> | ||
<div class="data">{{ data }}</div>cc | ||
</div> | ||
</template> | ||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'Cc', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
.container { | ||
display: inline-block; | ||
padding: 1rem; | ||
} | ||
.data { | ||
font-size: 2rem; | ||
} | ||
.data, .illustration { | ||
display: inline-block; | ||
vertical-align: middle; | ||
} | ||
.illustration { | ||
background-image: url('/static/icons/motorcycle-parts/cc.svg'); | ||
height: 3rem; | ||
width: 3rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<template> | ||
<tr> | ||
<td>Clutch</td> | ||
<td>{{ data }}</td> | ||
</tr> | ||
</template> | ||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'Clutch', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<template> | ||
<tr> | ||
<td>Compression</td> | ||
<td>{{ data }}</td> | ||
</tr> | ||
</template> | ||
|
||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'Compression', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<template> | ||
<div class="container"> | ||
<div class="data">COOLING</div> | ||
<div | ||
class="illustration" | ||
v-bind:style="{ backgroundImage: `url(${this.illustration})` }" | ||
/> | ||
<div class="data">{{ data }}</div> | ||
</div> | ||
</template> | ||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'Cooling', | ||
props: ['data'], | ||
data() { | ||
let illustration; | ||
if (this.data === 'liquid') { | ||
illustration = '/static/icons/motorcycle-parts/cooling-liquid.svg'; | ||
} | ||
if (this.data === 'air') { | ||
illustration = '/static/icons/motorcycle-parts/cooling-air.svg'; | ||
} | ||
return { | ||
illustration, | ||
}; | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
.container { | ||
padding: 1rem; | ||
text-align: center; | ||
} | ||
.data { | ||
font-size: 2rem; | ||
} | ||
.data, .illustration { | ||
display: inline-block; | ||
vertical-align: middle; | ||
} | ||
.illustration { | ||
height: 3rem; | ||
width: 3rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<template> | ||
<div class="container"> | ||
<div class="illustration" /> | ||
<div class="data">{{ data }}</div>kg | ||
</div> | ||
</template> | ||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'DryWeight', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
.container { | ||
display: inline-block; | ||
padding: 1rem; | ||
} | ||
.data { | ||
font-size: 2rem; | ||
} | ||
.data, .illustration { | ||
display: inline-block; | ||
vertical-align: middle; | ||
} | ||
.illustration { | ||
background-image: url('/static/icons/motorcycle-parts/cc.svg'); | ||
height: 3rem; | ||
width: 3rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<template> | ||
<tr> | ||
<td>Engine type</td> | ||
<td>{{ data }}</td> | ||
</tr> | ||
</template> | ||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'EngineType', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<template> | ||
<tr> | ||
<td>Frame Type</td> | ||
<td>{{ data }}</td> | ||
</tr> | ||
</template> | ||
|
||
|
||
<script type = "text/javascript"> | ||
export default { | ||
name: 'FrameType', | ||
props: ['data'], | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
Oops, something went wrong.