no extra padding on left on mobile
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Michael Zhang 2023-09-01 10:12:29 -05:00
parent 8e1fac9bd5
commit 49cfb3ccc4
2 changed files with 4 additions and 3 deletions

View File

@ -31,7 +31,6 @@ const handleNode =
// A link break after the title is explicitly required by GitHub
const titleEnd = text.value.indexOf("\n");
console.log("Title End", titleEnd);
if (titleEnd < 0) return;
const textBody = text.value.substring(titleEnd + 1);
@ -42,7 +41,6 @@ const handleNode =
if (m && !config.titleKeepTrailingWhitespaces) {
title = title.substring(0, title.length - m[0].length);
}
console.log("TITLE IS", title);
if (!nameFilter(config.titleFilter)(title)) return;
const { displayTitle, checkedTitle } = config.titleTextMap(title);

View File

@ -100,7 +100,6 @@ pre > code {
min-width: 0;
box-sizing: border-box;
padding: 20px;
padding-left: 30px;
}
@media screen and (max-width: variables.$breakpoint) {
@ -119,4 +118,8 @@ pre > code {
padding: 32px 40px 5px 40px;
}
}
.flex-wrapper > main {
padding-left: 30px;
}
}