File tree 3 files changed +25
-20
lines changed
3 files changed +25
-20
lines changed Original file line number Diff line number Diff line change 1
1
<template lang="html">
2
- <div class =" content" >
3
- <p >
4
- <router-link to =" /" >Go back</router-link>
5
- </p>
6
- <router-view ></router-view>
7
- </div>
2
+ <router-view ></router-view>
8
3
</template >
9
4
10
5
<script >
@@ -14,4 +9,7 @@ export default {
14
9
</script >
15
10
16
11
<style lang="css">
12
+ .section.is-fullwidth {
13
+ padding : 0 !important ;
14
+ }
17
15
</style >
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
2
< html >
3
-
4
- < head >
5
- < meta charset ="utf-8 ">
6
- < link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.css " integrity ="sha256-dMQYvN6BU9M4mHK94P22cZ4dPGTSGOVP41yVXvXatws= " crossorigin ="anonymous " />
7
- </ head >
8
-
9
- < body >
10
- < div id ="app "> </ div >
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
6
+ < title > Dozzle!</ title >
7
+ < link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css ">
8
+ < script defer src ="https://use.fontawesome.com/releases/v5.3.1/js/all.js "> </ script >
9
+ </ head >
10
+ < body >
11
+ < section class ="section is-fullwidth ">
12
+ < div id ="app "> </ div >
13
+ </ section >
11
14
< script src ="/main.js "> </ script >
12
- </ body >
15
+ </ body >
13
16
</ html >
Original file line number Diff line number Diff line change 1
1
<template lang="html">
2
- <div >
3
- <ul >
2
+ <div class =" container" >
3
+ <div class =" content" >
4
+ <section class =" section" >
5
+ <ul class =" is-marginless is-paddless" >
4
6
<li v-for =" item in containers" class =" columns unstyled box" >
5
- <div class =" column is-6 " >
7
+ <div class =" column is-4 " >
6
8
<router-link :to =" {name: 'container', params: {id: item.Id}}" >{{ item.Names[0] }}</router-link>
7
9
</div>
8
10
<div class =" column is-4" >
9
11
<code >{{ item.Image }}</code>
10
12
</div>
11
- <div class =" column is-2 " >
12
- {{ item.Status}}
13
+ <div class =" column is-4 " >
14
+ < span class = " subtitle is-7 " > {{ item.Status}}</span>
13
15
</div>
14
16
</li>
15
17
</ul>
18
+ </section>
19
+ </div>
16
20
</div>
17
21
</template >
18
22
You can’t perform that action at this time.
0 commit comments