Skip to content

Commit

Permalink
[patch][v16.9.8] Fix row height gap between header and first item row (
Browse files Browse the repository at this point in the history
  • Loading branch information
ponnexcodev authored May 8, 2024
1 parent a45c28d commit dd5e198
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-root",
"version": "16.9.7",
"version": "16.9.8",
"private": true,
"description": "Root design system mono-repo package.",
"homepage": "https://github.com/Toniq-Labs/toniq-labs-design-system",
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system",
"version": "16.9.7",
"version": "16.9.8",
"private": false,
"description": "Design system elements for Toniq Labs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,16 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
}
.row-wrapper {
min-height: 48px;
display: flex;
position: relative;
background: ${toniqColors.pageInteraction.backgroundColor};
cursor: pointer;
}
.row-wrapper:not(:first-of-type) {
min-height: 48px;
}
.row-wrapper:first-of-type,
.row-wrapper:first-of-type .row-item {
max-height: 32px;
Expand Down
2 changes: 1 addition & 1 deletion packages/native-elements-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-native-elements-test",
"version": "16.9.7",
"version": "16.9.8",
"private": true,
"scripts": {
"compile": "virmator compile",
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-scripts",
"version": "16.9.7",
"version": "16.9.8",
"private": true,
"scripts": {
"compile": "virmator compile",
Expand Down

0 comments on commit dd5e198

Please sign in to comment.