Skip to content

Commit 9ab6fa6

Browse files
committed
split improvements and bugfixes
1 parent b029c02 commit 9ab6fa6

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

packages/web-awesome/src/components/ArrowButton/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818

1919
.arrow-button-m {
20-
padding: 6px 6px;
20+
padding: 4px 6px;
2121
}
2222

2323
.icon-size-m {

packages/web-awesome/src/components/TestResult/TestResultHeader/styles.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
.test-result-breadcrumb {
1818
display: flex;
1919
gap: 4px;
20-
align-items: center;
2120
color: var(--on-text-secondary);
2221
white-space: nowrap;
2322
text-overflow: ellipsis;

packages/web-awesome/src/components/TestResult/TestResultSteps/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
.test-result-step-header {
4343
display: flex;
44-
align-items: center;
44+
align-items: flex-start;
4545
gap: 4px;
4646
transition: background-color 300ms;
4747
cursor: pointer;

packages/web-awesome/src/components/Tree/TreeItem.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { type TestStatus, formatDuration } from "@allurereport/core-api";
2-
import { Text } from "@allurereport/web-components";
2+
import { Code, Text } from "@allurereport/web-components";
33
import clsx from "clsx";
44
import type { FunctionComponent } from "preact";
55
import TreeItemIcon from "@/components/Tree/TreeItemIcon";
@@ -34,9 +34,9 @@ export const TreeItem: FunctionComponent<TreeItemProps> = ({
3434
id={id}
3535
>
3636
<TreeItemIcon status={status} />
37-
<span data-testid="tree-leaf-order" class={styles.order}>
37+
<Code data-testid="tree-leaf-order" size={"s"} className={styles.order}>
3838
{groupOrder}
39-
</span>
39+
</Code>
4040
<Text data-testid="tree-leaf-title" className={styles["item-title"]}>
4141
{name}
4242
</Text>

packages/web-awesome/src/components/Tree/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
box-sizing: content-box;
179179
padding-top: 2px;
180180
line-height: 16px;
181-
width: 24px;
181+
//width: 24px;
182182
}
183183

184184
.tree-item-marked {

0 commit comments

Comments
 (0)