Skip to content

Commit c170ceb

Browse files
committed
fix: make the database selection one line only
1 parent 84a8997 commit c170ceb

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/renderer/components/DatabaseTable/styles.module.scss

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@
22
0% {
33
transform: scale(1);
44
background: #e74c3c;
5-
}
5+
}
66
50% {
77
transform: scale(1.5);
88
background: #ff7979;
9-
}
9+
}
1010
100% {
1111
transform: scale(1);
1212
background: #ff7979;
13-
}
13+
}
1414
}
1515

16-
1716
.tables {
1817
background: var(--color-list-surface);
19-
height: 100%
18+
height: 100%;
2019
}
2120

2221
.header {
@@ -26,9 +25,16 @@
2625
gap: 10px;
2726
align-items: center;
2827
cursor: pointer;
28+
overflow: hidden;
2929

3030
span {
3131
flex-grow: 1;
32+
overflow: hidden;
33+
text-overflow: ellipsis;
34+
35+
i {
36+
white-space: nowrap;
37+
}
3238
}
3339
}
3440

@@ -39,4 +45,4 @@
3945
background: #e74c3c;
4046
border-radius: 50%;
4147
animation: ping 1s ease-out infinite;
42-
}
48+
}

0 commit comments

Comments
 (0)