Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>skillid</title>
<style>
.hide {
display:none;
}
</style>
<title>ESCO badge builder</title>
</head>
<body>
<div id="app"></div>
Expand Down
30 changes: 23 additions & 7 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
<!-- fonts-->
<script src="https://use.fontawesome.com/a62e883b64.js"></script>
<template>
<div id="app">
<h1>Skillid</h1>
<div class="content-container">
<app-badge></app-badge>
<app-form></app-form>
</div>
<div id="container">
<header class="column">
<img class="logo" src="./assets/svg/logo.svg" width="90px" height="90px"/>

<div class="up-left-info column">
<a href="#"><i class="fa fa-chevron-left" aria-hidden="true"></i> Return to library</a>
<h1>Create a Badge</h1>
</div>
</header>

<main>
<div class="content-container column">
<app-nav v-bind:form-control-elements="formControlElements"></app-nav>

<div class="row space-between">
<app-form v-bind:form-control-elements="formControlElements" v-on:next-step="nextStep"></app-form>
<app-badge></app-badge>
</div>
</div>
</main>

</div>
</template>

<script src="./js/app.js"></script>
<style src="./css/reset.css"></style>
<style src="./css/app.css"></style>
<style src="./css/app.css"></style>
1 change: 1 addition & 0 deletions src/assets/svg/arrow-grey.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/svg/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/svg/background.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/assets/svg/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/app-badge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

<template>
<div id="app-badge-container">
<h1>Badge</h1>
<h1>Preview</h1>

<svg class="svgFile" id="svgFile" version="1.1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 245 245"
Expand Down
Loading