mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-07 09:02:27 +00:00
Add footer with github star
This commit is contained in:
21
src/App.vue
21
src/App.vue
@@ -46,6 +46,25 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<footer class="fixed-bottom">
|
||||
<div class="footer-left">
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
value=""
|
||||
id="flexCheckDefault"
|
||||
checked
|
||||
disabled
|
||||
/>
|
||||
Auto-refresh
|
||||
</div>
|
||||
|
||||
<div class="footer-right">
|
||||
<github-button href="https://github.com/davegallant/rfd-fyi"
|
||||
>Star</github-button
|
||||
>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</template>
|
||||
|
||||
@@ -54,6 +73,7 @@ import axios from "axios";
|
||||
import moment from "moment";
|
||||
import Loading from "vue-loading-overlay";
|
||||
import Mousetrap from "mousetrap";
|
||||
import GithubButton from "vue-github-button";
|
||||
|
||||
import "vue-loading-overlay/dist/vue-loading.css";
|
||||
|
||||
@@ -120,6 +140,7 @@ export default {
|
||||
},
|
||||
components: {
|
||||
Loading,
|
||||
GithubButton,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@@ -175,8 +175,24 @@ a {
|
||||
color: #83a598; /**/
|
||||
}
|
||||
a:visited {
|
||||
color: #d65d0e; /**/
|
||||
color: #53514f; /**/
|
||||
}
|
||||
a:hover {
|
||||
color: #d65d03; /**/
|
||||
}
|
||||
|
||||
footer {
|
||||
background: #282828;
|
||||
color: white;
|
||||
padding: 3px;
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.footer-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.footer-right {
|
||||
float: right;
|
||||
}
|
||||
|
Reference in New Issue
Block a user