lupine.components 1.1.8 → 1.1.9

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": "lupine.components",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "license": "MIT",
5
5
  "author": "uuware.com",
6
6
  "homepage": "https://github.com/uuware/lupine.js",
@@ -9,7 +9,7 @@ export const InputWithTitle = (
9
9
  ) => {
10
10
  return (
11
11
  <div>
12
- <div>{title}</div>
12
+ <div style={{ paddingBottom: '4px' }}>{title}</div>
13
13
  <div>
14
14
  <input
15
15
  class={className}
@@ -169,6 +169,10 @@ export const Tabs = ({ pages, defaultIndex, topClassName, pagePadding, hook: ref
169
169
  display: 'flex',
170
170
  height: 'auto',
171
171
  'border-bottom': '1px solid grey',
172
+ 'overflow-x': 'auto',
173
+ 'overflow-y': 'hidden',
174
+ 'scrollbar-width': 'thin',
175
+ 'scrollbar-color': '#ababab4d #d5d5d552',
172
176
  '> div > .tab': {
173
177
  padding: '2px 3px',
174
178
  width: 'auto',