@eturnity/eturnity_reusable_components 1.1.49 → 1.1.52
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/package.json
CHANGED
|
@@ -32,7 +32,6 @@ const TableTitle = styled.div`
|
|
|
32
32
|
`
|
|
33
33
|
|
|
34
34
|
const TableScroll = styled.div`
|
|
35
|
-
/* position: relative; */
|
|
36
35
|
max-width: 100%;
|
|
37
36
|
`
|
|
38
37
|
|
|
@@ -43,15 +42,17 @@ const TableWrapper = styled("div", wrapperAttrs)`
|
|
|
43
42
|
overflow: auto;
|
|
44
43
|
|
|
45
44
|
::-webkit-scrollbar {
|
|
46
|
-
|
|
45
|
+
height: 5px; //height of the whole scrollbar area
|
|
47
46
|
}
|
|
48
47
|
|
|
49
|
-
|
|
50
|
-
background:
|
|
48
|
+
::-webkit-scrollbar-track {
|
|
49
|
+
background: ${(props) => props.theme.colors.grey2};
|
|
50
|
+
border-radius: 4px;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
::-webkit-scrollbar-thumb {
|
|
54
|
-
border-bottom:
|
|
54
|
+
border-bottom: 5px solid ${(props) => props.theme.colors.purple}; // width of the actual scrollbar
|
|
55
|
+
border-radius: 4px;
|
|
55
56
|
}
|
|
56
57
|
`
|
|
57
58
|
|
|
@@ -112,7 +113,7 @@ const TableContainer = styled.table`
|
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
td {
|
|
115
|
-
padding: 6px
|
|
116
|
+
padding: 6px 6px 7px 4px;
|
|
116
117
|
border-bottom: 1px solid ${(props) => props.theme.colors.grey4};
|
|
117
118
|
|
|
118
119
|
&.empty {
|