wnm168 commited on
Commit
13aa30a
·
verified ·
1 Parent(s): 0efcf5b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +10 -5
index.html CHANGED
@@ -436,7 +436,7 @@
436
  );
437
  return (
438
  <select
439
- className="form-select me-2"
440
  style={{ width: "auto" }}
441
  onChange={(e) => {
442
  props.onClick(parseInt(e.target.value));
@@ -459,10 +459,7 @@
459
  };
460
  return (
461
  <div className="d-flex justify-content-center align-items-baseline">
462
- <SelectItems />
463
- <span className="text-info me-2">
464
- {page}/{pageCount}
465
- </span>
466
  <Pagination>
467
  {pageCount > 1 && page > 1 && (
468
  <Pagination.First
@@ -478,6 +475,14 @@
478
  }}
479
  />
480
  )}
 
 
 
 
 
 
 
 
481
  {pageCount > 1 && page < pageCount && (
482
  <Pagination.Next
483
  onClick={() => {
 
436
  );
437
  return (
438
  <select
439
+ className="page-link border-0 h-100 py-0"
440
  style={{ width: "auto" }}
441
  onChange={(e) => {
442
  props.onClick(parseInt(e.target.value));
 
459
  };
460
  return (
461
  <div className="d-flex justify-content-center align-items-baseline">
462
+
 
 
 
463
  <Pagination>
464
  {pageCount > 1 && page > 1 && (
465
  <Pagination.First
 
475
  }}
476
  />
477
  )}
478
+ <Pagination.Item linkClassName="p-0 h-100 d-inline-block">
479
+ <SelectItems />
480
+ </Pagination.Item>
481
+ <Pagination.Item>
482
+ <span className="text-info">
483
+ {page}/{pageCount}
484
+ </span>
485
+ </Pagination.Item>
486
  {pageCount > 1 && page < pageCount && (
487
  <Pagination.Next
488
  onClick={() => {