We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64ed6d3 commit 9ccf5abCopy full SHA for 9ccf5ab
src/pagination/PaginationList.js
@@ -80,9 +80,9 @@ class PaginationList extends React.Component {
80
81
return (
82
<div className="row">
83
- {
84
- this.props.sizePerPageList.length > 1 ?
85
- <div className="col-md-1">
+ <div className="col-md-6">
+ {
+ this.props.sizePerPageList.length > 1 ?
86
<div className="dropdown">
87
<button className="btn btn-default dropdown-toggle" type="button" id="pageDropDown" data-toggle="dropdown"
88
aria-expanded="true">
@@ -93,9 +93,9 @@ class PaginationList extends React.Component {
93
{sizePerPageList}
94
</ul>
95
</div>
96
+ : ""
97
+ }
98
- : ""
- }
99
<div className="col-md-6">
100
<ul className="pagination" style={pageListStyle}>
101
{pageBtns}
0 commit comments