Fix margins

This commit is contained in:
advplyr 2022-12-24 12:25:32 -06:00
parent 69e2324d6e
commit 33cfa3f62d
8 changed files with 70 additions and 6 deletions

View file

@ -22,3 +22,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -92,3 +92,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -37,3 +37,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -41,3 +41,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -113,3 +113,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -86,3 +86,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -49,3 +49,12 @@ export default {
mounted() {} mounted() {}
} }
</script> </script>
<style scoped>
p {
margin: 0px;
}
img {
margin: 0px;
}
</style>

View file

@ -4,7 +4,8 @@ module.exports = {
content: [ content: [
'./pages/**/*.{html,js,vue}', './pages/**/*.{html,js,vue}',
'./components/**/*.{html,js,vue}', './components/**/*.{html,js,vue}',
'./layouts/**/*.{html,js,vue}' './layouts/**/*.{html,js,vue}',
'./content/**/*.{md,vue}'
], ],
theme: { theme: {
extend: { extend: {