Skip to content

Commit

Permalink
fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhusien committed Dec 9, 2023
1 parent c629663 commit 78286ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": false
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@johnbotapp/discord-html-transcripts",
"version": "3.2.6",
"version": "3.2.7",
"description": "A nicely formatted html transcript generator for discord.js.",
"main": "dist/index.js",
"homepage": "https://github.com/johnbotapp/discord-html-transcripts",
Expand Down
2 changes: 1 addition & 1 deletion src/generator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default async function renderMessages({ messages, channel, callbacks, ...
).filter(isDefined);

const elements = (
<DiscordMessages style={{ padding: '0 0 89px', backgroundColor: "#313338", border: "none", borderTop: "1px solid rgba(255, 255, 255, 0.05)" }}>
<DiscordMessages style={{ padding: '0 0 90px', backgroundColor: "#313338", border: "none", borderTop: "1px solid rgba(255, 255, 255, 0.05)" }}>
{/* header <DiscordHeader
guild={channel.isDMBased() ? 'Direct Messages' : channel.guild.name}
channel={
Expand Down

0 comments on commit 78286ea

Please sign in to comment.