File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/flowy_infra_ui/lib/style_widget Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff line change 1- import 'package:flowy_infra/size.dart' ;
21import 'package:flowy_infra_ui/style_widget/hover.dart' ;
32import 'package:flowy_infra_ui/style_widget/text.dart' ;
43import '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 ),
You can’t perform that action at this time.
0 commit comments