Skip to content

Commit b7e5f3f

Browse files
committed
style(monkey): change header space layout from column to row
- Change flex-flow from column to row for left-space and right-space - Update alignment properties for better horizontal layout - Use gap instead of column-gap for consistent spacing - Adjust justify-content for proper horizontal alignment
1 parent 4756dda commit b7e5f3f

File tree

1 file changed

+5
-5
lines changed
  • src/monkey/copymanga-enhance/scripts/newPage/component/AppHeader

1 file changed

+5
-5
lines changed

src/monkey/copymanga-enhance/scripts/newPage/component/AppHeader/style.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323

2424
.app-header :is(.left-space, .right-space) {
2525
display: flex;
26-
flex-flow: column;
27-
justify-content: center;
28-
column-gap: 5px;
26+
flex-flow: row;
27+
align-items: center;
28+
gap: 5px;
2929
}
3030

3131
.app-header .left-space {
32-
align-items: flex-end;
32+
justify-content: flex-end;
3333
}
3434

3535
.app-header .right-space {
36-
align-items: flex-start;
36+
justify-content: flex-start;
3737
}

0 commit comments

Comments
 (0)