Skip to content

Commit

Permalink
Merge pull request #1466 from scroll-tech/sepolia
Browse files Browse the repository at this point in the history
Merge pull request #1465
  • Loading branch information
Holybasil authored Feb 19, 2025
2 parents 232b136 + 1d81ba7 commit 16b2b4f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@ div.markdown-body img {
}

.wrapper {
@apply max-w-7xl p-6 mx-auto w-full overflow-hidden;
@apply max-w-[1280px] p-[24px] mx-auto w-full overflow-hidden;
padding-top: 3rem;
}

@media screen and (max-width: 900px) {
.wrapper {
@apply p-4;
@apply p-[16px];
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const Blocks = () => {
<Box
className="wrapper mx-auto"
sx={{
maxWidth: "130rem",
marginBottom: "16rem",
"& *": {
fontFamily: "var(--developer-page-font-family) !important",
Expand Down
6 changes: 3 additions & 3 deletions src/app/rollupscan/batch/[batchIndex]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ const Batch = props => {
const renderStatusTooltip = () => {
return (
<>
<p className="mb-1">Precommitted: Batch included in Scroll L2</p>
<p className="mb-1">Committed: Batch transaction data submitted to Ethereum (L1)</p>
<p className="mb-1">Finalized: Batch validity proof submitted to and verified on Ethereum</p>
<p className="mb-[4px]">Precommitted: Batch included in Scroll L2</p>
<p className="mb-[4px]">Committed: Batch transaction data submitted to Ethereum (L1)</p>
<p className="mb-[4px]">Finalized: Batch validity proof submitted to and verified on Ethereum</p>
</>
)
}
Expand Down
4 changes: 0 additions & 4 deletions src/app/rollupscan/index/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,6 @@ const RollupTable = function RollupTable(props) {
const params = new URLSearchParams(searchParams.toString())
params.set("page", newPage)
router.push(`${pathname}?${params.toString()}}`)
onPaginationChange({
page: +searchParams.get("page"),
pageSize: +searchParams.get("per_page"),
})
}

if (emptyBatch) {
Expand Down

0 comments on commit 16b2b4f

Please sign in to comment.