diff --git a/assets/App.vue b/assets/App.vue index 6a12ab6c8244..cd68cb6b8066 100644 --- a/assets/App.vue +++ b/assets/App.vue @@ -3,13 +3,13 @@ \ No newline at end of file +.section.is-fullwidth { + padding: 0 !important; +} + diff --git a/assets/index.html b/assets/index.html index 6a74fc6a5e05..13d528b1884a 100644 --- a/assets/index.html +++ b/assets/index.html @@ -1,16 +1,19 @@ + - Dozzle! + Dozzle + -
-
-
- +
+
+
+ + \ No newline at end of file diff --git a/assets/main.js b/assets/main.js index a01ed1190822..79c64745951a 100644 --- a/assets/main.js +++ b/assets/main.js @@ -7,21 +7,21 @@ import Container from "./pages/Container.vue"; Vue.use(VueRouter); const routes = [ - {path: "/", component: Index}, - { - path: "/container/:id", - component: Container, - name: "container", - props: true - } + { path: "/", component: Index }, + { + path: "/container/:id", + component: Container, + name: "container", + props: true + } ]; const router = new VueRouter({ - mode: "history", - routes + mode: "history", + routes }); new Vue({ - router, - render: h => h(App) + router, + render: h => h(App) }).$mount("#app"); diff --git a/assets/pages/Container.vue b/assets/pages/Container.vue index 9188162a5c2e..220dfec8bb02 100644 --- a/assets/pages/Container.vue +++ b/assets/pages/Container.vue @@ -3,68 +3,68 @@ \ No newline at end of file +.date { + background-color: #262626; + color: #258ccd; +} + diff --git a/assets/pages/Index.vue b/assets/pages/Index.vue index 273b6d911134..349e3736f4f6 100644 --- a/assets/pages/Index.vue +++ b/assets/pages/Index.vue @@ -1,56 +1,55 @@ \ No newline at end of file +.hide-overflow { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} +.code { + background-color: #f5f5f5; + color: #ff3860; + font-size: 0.875em; + font-weight: 400; + padding: 0.25em 0.5em 0.25em; + display: block; + border-radius: 2px; +} +