Skip to content

Commit

Permalink
fix(react-scheduler): fix no space between appointments bug in Firefox (
Browse files Browse the repository at this point in the history
  • Loading branch information
AryamnovEugeniy committed Jul 2, 2019
1 parent def0662 commit 0016a8b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const styles = ({ palette, typography, spacing }) => ({
width: '100%',
overflow: 'hidden',
boxSizing: 'border-box',
borderRight: '1px solid transparent',
// fix no space between appointments bug in Firefox (https://bugzilla.mozilla.org/show_bug.cgi?id=989340)
borderRight: '2px solid transparent',
borderBottom: '1px solid transparent',
backgroundClip: 'padding-box',
borderRadius: spacing(0.5),
Expand Down

0 comments on commit 0016a8b

Please sign in to comment.