diff --git a/platypush/backend/http/webapp/src/Utils.vue b/platypush/backend/http/webapp/src/Utils.vue index 17069fbe..ba169c41 100644 --- a/platypush/backend/http/webapp/src/Utils.vue +++ b/platypush/backend/http/webapp/src/Utils.vue @@ -9,6 +9,7 @@ import Notification from "@/utils/Notification"; import Screen from "@/utils/Screen"; import Text from "@/utils/Text"; import Types from "@/utils/Types"; +import Url from "@/utils/Url"; export default { name: "Utils", @@ -23,6 +24,7 @@ export default { Screen, Text, Types, + Url, ], } diff --git a/platypush/backend/http/webapp/src/style/items.scss b/platypush/backend/http/webapp/src/style/items.scss index f568abce..555a3b4d 100644 --- a/platypush/backend/http/webapp/src/style/items.scss +++ b/platypush/backend/http/webapp/src/style/items.scss @@ -4,7 +4,7 @@ $header-height: 3.5em; display: flex; align-items: center; padding: .75em .25em; - box-shadow: 0 2.5px 2px -1px $default-shadow-color; + border-bottom: 1px solid $default-shadow-color; cursor: pointer; &:hover { diff --git a/platypush/backend/http/webapp/src/utils/Url.vue b/platypush/backend/http/webapp/src/utils/Url.vue new file mode 100644 index 00000000..376e3a4f --- /dev/null +++ b/platypush/backend/http/webapp/src/utils/Url.vue @@ -0,0 +1,37 @@ + +