File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed
chunk/[chunkIndex]/blocks Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -191,12 +191,12 @@ div.markdown-body img {
191
191
}
192
192
193
193
.wrapper {
194
- @apply max-w-7xl p-6 mx-auto w-full overflow-hidden;
194
+ @apply max-w-[ 1280 px ] p-[ 24 px ] mx-auto w-full overflow-hidden;
195
195
padding-top : 3rem ;
196
196
}
197
197
198
198
@media screen and (max-width : 900px ) {
199
199
.wrapper {
200
- @apply p-4 ;
200
+ @apply p-[ 16 px ] ;
201
201
}
202
202
}
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ const Blocks = () => {
25
25
< Box
26
26
className = "wrapper mx-auto"
27
27
sx = { {
28
+ maxWidth : "130rem" ,
28
29
marginBottom : "16rem" ,
29
30
"& *" : {
30
31
fontFamily : "var(--developer-page-font-family) !important" ,
Original file line number Diff line number Diff line change @@ -116,9 +116,9 @@ const Batch = props => {
116
116
const renderStatusTooltip = ( ) => {
117
117
return (
118
118
< >
119
- < p className = "mb-1 " > Precommitted: Batch included in Scroll L2</ p >
120
- < p className = "mb-1 " > Committed: Batch transaction data submitted to Ethereum (L1)</ p >
121
- < p className = "mb-1 " > Finalized: Batch validity proof submitted to and verified on Ethereum</ p >
119
+ < p className = "mb-[4px] " > Precommitted: Batch included in Scroll L2</ p >
120
+ < p className = "mb-[4px] " > Committed: Batch transaction data submitted to Ethereum (L1)</ p >
121
+ < p className = "mb-[4px] " > Finalized: Batch validity proof submitted to and verified on Ethereum</ p >
122
122
</ >
123
123
)
124
124
}
Original file line number Diff line number Diff line change @@ -158,10 +158,6 @@ const RollupTable = function RollupTable(props) {
158
158
const params = new URLSearchParams ( searchParams . toString ( ) )
159
159
params . set ( "page" , newPage )
160
160
router . push ( `${ pathname } ?${ params . toString ( ) } }` )
161
- onPaginationChange ( {
162
- page : + searchParams . get ( "page" ) ,
163
- pageSize : + searchParams . get ( "per_page" ) ,
164
- } )
165
161
}
166
162
167
163
if ( emptyBatch ) {
You can’t perform that action at this time.
0 commit comments