diff options
author | Ian Coleman <coleman.ian@gmail.com> | 2017-06-14 12:26:31 +1000 |
---|---|---|
committer | Ian Coleman <coleman.ian@gmail.com> | 2017-06-14 12:26:31 +1000 |
commit | 8b18bdbb2e2f17d48a75db61edba6ed166061224 (patch) | |
tree | 38c2589be33d77068cf9b194b548da2b2a2f93c1 | |
parent | 34f4187645ce5dfc830f751e4672e4a035486602 (diff) | |
download | BIP39-8b18bdbb2e2f17d48a75db61edba6ed166061224.tar.gz BIP39-8b18bdbb2e2f17d48a75db61edba6ed166061224.tar.zst BIP39-8b18bdbb2e2f17d48a75db61edba6ed166061224.zip |
Display version number in top right
-rw-r--r-- | changelog.md | 1 | ||||
-rw-r--r-- | src/index.html | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 8895936..37be5fd 100644 --- a/changelog.md +++ b/changelog.md | |||
@@ -1,3 +1,4 @@ | |||
1 | # 0.1.0 2017-06-14 | 1 | # 0.1.0 2017-06-14 |
2 | 2 | ||
3 | Add changelog | 3 | Add changelog |
4 | Display version number in top right | ||
diff --git a/src/index.html b/src/index.html index a0f8bb1..bc8ffba 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -103,12 +103,18 @@ | |||
103 | border-bottom: 1px dashed #000; | 103 | border-bottom: 1px dashed #000; |
104 | text-decoration: none; | 104 | text-decoration: none; |
105 | } | 105 | } |
106 | .version { | ||
107 | position: absolute; | ||
108 | top: 5px; | ||
109 | right: 5px; | ||
110 | } | ||
106 | </style> | 111 | </style> |
107 | </head> | 112 | </head> |
108 | <body> | 113 | <body> |
109 | <div class="container"> | 114 | <div class="container"> |
110 | 115 | ||
111 | <h1 class="text-center">Mnemonic Code Converter</h1> | 116 | <h1 class="text-center">Mnemonic Code Converter</h1> |
117 | <p class="version">v0.1.0</p> | ||
112 | <hr> | 118 | <hr> |
113 | <div class="row"> | 119 | <div class="row"> |
114 | <div class="col-md-12"> | 120 | <div class="col-md-12"> |