Skip to content

Commit d214da9

Browse files
UI improvements
1 parent 8dfc499 commit d214da9

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

web/renderer/components/DatabaseNav/index.module.css

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

1919
li {
20-
@apply min-w-[150px];
20+
@apply min-w-[130px];
2121
}
2222

2323
@screen lg {

web/renderer/components/pageComponents/DatabasePage/ForTests/TestGroup/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
}
4141

4242
.inlineEditInput {
43-
@apply bg-transparent border border-transparent text-base font-semibold text-storm-500 px-1 py-0.5 m-0 outline-none rounded transition-all;
44-
min-width: 100px;
43+
@apply bg-transparent border border-transparent text-base font-semibold text-storm-500 px-1 py-0.5 mt-0 mb-0 ml-0 mr-3 outline-none rounded transition-all;
44+
min-width: 200px;
4545
}
4646

4747
.inlineEditInput:hover {

web/renderer/components/pageComponents/DatabasePage/ForTests/TestGroup/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default function TestGroup({
113113
onFocus={() => setIsEditing(true)}
114114
onClick={e => e.stopPropagation()}
115115
/>
116-
<span className={css.testCount}>({testCount} tests)</span>
116+
<span className={css.testCount}>{`(${testCount} ${testCount === 1 ? 'test' : 'tests'})`}</span>
117117
</div>
118118
<div className={css.groupHeaderRight}>
119119
{groupResult && (

web/renderer/components/pageComponents/DatabasePage/ForTests/TestItem/index.module.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* TestItem Component Styles */
21
.item {
32
@apply border-2 border-stone-50 rounded-lg my-2 py-3 px-4 text-sm relative;
43
}
@@ -68,7 +67,7 @@
6867
}
6968

7069
.separator {
71-
@apply border-t border-stone-300 mb-4 -mx-4;
70+
@apply border-t-2 border-stone-50 mb-4 -mx-4;
7271
}
7372

7473
.fieldGroup {

0 commit comments

Comments
 (0)