Skip to content

Commit 78982a5

Browse files
committed
Fix table list scrollbar jittering while loading
1 parent 9cd87e8 commit 78982a5

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system-root",
3-
"version": "16.26.0",
3+
"version": "16.26.1",
44
"private": true,
55
"description": "Root design system mono-repo package.",
66
"homepage": "https://github.com/Toniq-Labs/toniq-labs-design-system",

packages/design-system/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system",
3-
"version": "16.26.0",
3+
"version": "16.26.1",
44
"private": false,
55
"description": "Design system elements for Toniq Labs",
66
"keywords": [

packages/design-system/src/elements/toniq-list-table/toniq-list-table.element.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
160160
161161
.table-wrapper {
162162
position: relative;
163-
overflow-x: auto;
163+
overflow: auto hidden;
164164
display: flex;
165165
flex-grow: 1;
166166
flex-direction: column;
@@ -176,8 +176,7 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
176176
width: 100%;
177177
display: flex;
178178
flex-direction: row;
179-
overflow-x: auto;
180-
overflow-y: hidden;
179+
overflow: auto hidden;
181180
scrollbar-width: thin;
182181
scrollbar-color: ${scrollbarColorCssVar} ${scrollbarTrackColorCssVar};
183182
}

packages/native-elements-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system-native-elements-test",
3-
"version": "16.26.0",
3+
"version": "16.26.1",
44
"private": true,
55
"scripts": {
66
"compile": "virmator compile",

packages/scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toniq-labs/design-system-scripts",
3-
"version": "16.26.0",
3+
"version": "16.26.1",
44
"private": true,
55
"scripts": {
66
"compile": "virmator compile",

0 commit comments

Comments
 (0)