Skip to content

Commit

Permalink
change name and basic look
Browse files Browse the repository at this point in the history
  • Loading branch information
BenRichter committed Apr 3, 2018
1 parent a02a179 commit 3d3a341
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>todo-app</title>
<title>VueDo</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="app">
<h1 class="ui dividing centered header">Vue.js Todo App</h1>
<h1 class="ui dividing centered header">VueDO</h1>
<div class='ui three column centered grid'>
<div class='column'>
<todo-list :todos="todos"></todo-list>
Expand Down
13 changes: 8 additions & 5 deletions src/components/CreateTodo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
<label>Project</label>
<input v-model="projectText" type='text'>
</div>
<div class='ui two button attached buttons'>
<button class='ui basic blue button' @click="sendForm()">
Create
</button>
<button class='ui basic red button' @click="closeForm">

<div class='ui buttons'>
<button class='ui icon button' @click="closeForm">
Cancel
</button>
<div class="or"></div>
<button class="ui right labeled icon button positive" @click="sendForm()">
<i class="add icon"></i>
New
</button>
</div>
</div>
</div>
Expand Down

0 comments on commit 3d3a341

Please sign in to comment.