Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/widgets/content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -468,12 +468,12 @@ class Quotation extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.only(left: 10),
padding: const EdgeInsetsDirectional.only(start: 10),
child: Container(
padding: const EdgeInsets.only(left: 5),
padding: const EdgeInsetsDirectional.only(start: 5),
decoration: BoxDecoration(
border: Border(
left: BorderSide(
border: BorderDirectional(
start: BorderSide(
width: 5,
// Web has the same color in light and dark mode.
color: const HSLColor.fromAHSL(1, 0, 0, 0.87).toColor()))),
Expand Down