Skip to content

Commit 6a4fe34

Browse files
committed
feat: Fix a regression in the Library Page
1 parent 3c380b5 commit 6a4fe34

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/Feeds/Feeds.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
.ResizeHandle,
5656
.ResizeHandleVertical,
5757
.ResizeHandleCollapsed {
58-
background-color: gray; /* Default background color */
58+
background-color:#4F5255; /* Default background color */
5959
transition: background-color 250ms linear;
6060
}
6161

@@ -80,13 +80,13 @@
8080
.ResizeHandleVertical[data-resize-handle-active],
8181
.ResizeHandleCollapsed:hover,
8282
.ResizeHandleCollapsed[data-resize-handle-active] {
83-
background-color: var(--pf-global--active-color--400); /* PatternFly blue */
83+
background-color:#8A8D90 ; /* PatternFly blue */
8484
}
8585

8686
/* Adjust for touch devices */
8787
@media (pointer: coarse) {
8888
.ResizeHandle {
89-
width: 1rem;
89+
width: 0.5em;
9090
}
9191
.ResizeHandleVertical {
9292
height: 1rem;

src/components/NewLibrary/components/LibraryTable.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,11 @@ const LibraryTable: React.FC<TableProps> = ({
327327
>
328328
{columnNames.date}
329329
</Th>
330-
<Th name="owner">
331-
{columnNames.owner} width={20}
330+
<Th name="owner" width={20}>
331+
{columnNames.owner}
332332
</Th>
333-
<Th name="size">
334-
{columnNames.size} width={20}
333+
<Th name="size" width={20}>
334+
{columnNames.size}
335335
</Th>
336336
</Tr>
337337
</Thead>

0 commit comments

Comments
 (0)