@madie/madie-design-system 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Pagination/index.jsx +12 -7
- package/dist/browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/react/index.js +19 -19
- package/dist/react/index.js.LICENSE.txt +0 -12
- package/dist/react/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -32,10 +32,17 @@ const useStyles = makeStyles({
|
|
|
32
32
|
color: "#757575",
|
|
33
33
|
},
|
|
34
34
|
//select
|
|
35
|
-
|
|
36
|
-
margin:
|
|
37
|
-
"& .
|
|
38
|
-
|
|
35
|
+
selectRoot: {
|
|
36
|
+
margin: '0 11px',
|
|
37
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
38
|
+
"& legend": {
|
|
39
|
+
width: 0,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
"& .MuiInputBase-input": {
|
|
43
|
+
fontFamily: "Rubik",
|
|
44
|
+
fontSize: 14,
|
|
45
|
+
borderRadius: 3,
|
|
39
46
|
},
|
|
40
47
|
},
|
|
41
48
|
// pagination
|
|
@@ -130,9 +137,7 @@ const Pagination = ({
|
|
|
130
137
|
</Typography>
|
|
131
138
|
<Select
|
|
132
139
|
size="small"
|
|
133
|
-
|
|
134
|
-
root: classes.select,
|
|
135
|
-
}}
|
|
140
|
+
className={classes.selectRoot}
|
|
136
141
|
id="pagination-limit-select"
|
|
137
142
|
value={limit}
|
|
138
143
|
label={null}
|