mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-27 07:31:46 +01:00
* Adds a different layout * Adds new layout and uses sass to get bulma * Adds new layout and uses sass to get bulma * Adds title * Adds ellipses * Adds tooltip * Updates packages * Fixes / page
23 lines
429 B
Vue
23 lines
429 B
Vue
<template lang="html">
|
|
<div class="hero is-fullheight is-dark">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h1 class="title">Please choose a container from the list to view the logs</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: [],
|
|
name: "Default"
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.hero.is-dark {
|
|
color: #ddd;
|
|
background-color: #111;
|
|
}
|
|
</style>
|