[mod] webapp: no list style

This commit is contained in:
2020-05-06 12:21:02 +02:00
parent c1d3a58d3b
commit 302127b70c

View File

@@ -1,6 +1,6 @@
<template>
<div class="mt-3">
<ul>
<ul class="pl-3">
<li v-for="w in watchers">
<i class="fas" v-bind:class="watcherIconClass(w)"></i>
{{ w.name }} <span v-bind:class="watcherClass(w)">{{ w.state }}</span>
@@ -46,5 +46,11 @@
}
</script>
<!--<style scoped>-->
<!--</style>-->
<style scoped>
/*ul {*/
/* padding-left: 20px;*/
/*}*/
li {
list-style: none;
}
</style>