remove margin and padding from the chat template

This commit is contained in:
Holly Stubbs 2021-09-03 21:12:59 +01:00
parent ac84a10088
commit 3e9491e9de

View file

@ -1,33 +1,38 @@
<html>
<head>
<style>
.container {
width: 482px;
height: 165px;
}
<head>
<style>
body {
margin: 0;
padding: 0;
}
hidden {
visibility: hidden;
}
.container {
width: 482px;
height: 165px;
}
.line {
padding: 2px;
font-size: 8pt;
font-family: sans-serif;
}
hidden {
visibility: hidden;
}
.line0 {
background-color: #edebfa;
}
.line {
padding: 2px;
font-size: 8pt;
font-family: sans-serif;
}
.line1 {
background-color: #e3e1fa;
}
</style>
</head>
<body>
<div class="container">
|content|
</div>
</body>
.line0 {
background-color: #edebfa;
}
.line1 {
background-color: #e3e1fa;
}
</style>
</head>
<body>
<div class="container">
|content|
</div>
</body>
</html>