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