We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bf1514 commit afff734Copy full SHA for afff734
2 files changed
packages/dataviews/src/pagination.js
@@ -27,7 +27,12 @@ const Pagination = memo( function Pagination( {
27
justify="end"
28
className="dataviews-pagination"
29
>
30
- <HStack justify="flex-start" expanded={ false } spacing={ 2 }>
+ <HStack
31
+ justify="flex-start"
32
+ expanded={ false }
33
+ spacing={ 2 }
34
+ className="dataviews-pagination__page-selection"
35
+ >
36
{ createInterpolateElement(
37
sprintf(
38
// translators: %s: Total number of pages.
packages/dataviews/src/style.scss
@@ -38,6 +38,13 @@
color: $gray-700;
39
}
40
41
+.dataviews-pagination__page-selection {
42
+ font-size: 11px;
43
+ text-transform: uppercase;
44
+ font-weight: 500;
45
+ color: $gray-900;
46
+}
47
+
48
.dataviews-filters-options {
49
margin: $grid-unit-40 0 $grid-unit-20;
50
0 commit comments