@eturnity/eturnity_reusable_components 1.1.49 → 1.1.50

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.1.49",
3
+ "version": "1.1.50",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -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
- width: 10px; //width of the whole scrollbar area
45
+ height: 5px; //height of the whole scrollbar area
47
46
  }
48
47
 
49
48
  track ::-webkit-scrollbar-track {
50
- background: #fff;
49
+ background: ${(props) => props.theme.colors.grey2};
50
+ border-radius: 4px;
51
51
  }
52
52
 
53
53
  ::-webkit-scrollbar-thumb {
54
- border-bottom: 2px solid #b2b9c4; // width of the actual scrollbar
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