Skip to content

Commit 3d41cb0

Browse files
committed
chore: adjust ui color
1 parent ab896cb commit 3d41cb0

File tree

2 files changed

+4
-4
lines changed
  • frontend/app_flowy

2 files changed

+4
-4
lines changed

frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_cell.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ class _GridHeaderCellContainer extends StatelessWidget {
8585
@override
8686
Widget build(BuildContext context) {
8787
final theme = context.watch<AppTheme>();
88-
final borderSide = BorderSide(color: theme.shader4, width: 0.4);
88+
final borderSide = BorderSide(color: theme.shader5, width: 1.0);
89+
8990
final decoration = BoxDecoration(
9091
border: Border(
9192
top: borderSide,
@@ -126,7 +127,7 @@ class _DragToExpandLine extends StatelessWidget {
126127
borderRadius: BorderRadius.zero,
127128
contentMargin: const EdgeInsets.only(left: 6),
128129
),
129-
child: const SizedBox(width: 2),
130+
child: const SizedBox(width: 4),
130131
),
131132
),
132133
);

frontend/app_flowy/packages/flowy_infra_ui/lib/style_widget/button.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:flowy_infra/size.dart';
21
import 'package:flowy_infra_ui/style_widget/hover.dart';
32
import 'package:flowy_infra_ui/style_widget/text.dart';
43
import 'package:flowy_infra_ui/widget/spacing.dart';
@@ -28,7 +27,7 @@ class FlowyButton extends StatelessWidget {
2827
return InkWell(
2928
onTap: onTap,
3029
child: FlowyHover(
31-
style: HoverStyle(borderRadius: Corners.s6Border, hoverColor: hoverColor),
30+
style: HoverStyle(borderRadius: BorderRadius.zero, hoverColor: hoverColor),
3231
setSelected: () => isSelected,
3332
builder: (context, onHover) => _render(),
3433
),

0 commit comments

Comments
 (0)