Skip to content

Commit

Permalink
bug-fix actionbuttons missaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
tindevw committed Jan 16, 2025
1 parent 3dd08d1 commit bf5e2cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions app/routes/events/components/EventDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,7 @@ const EventDetail = () => {
}
actionButtons={
event && (
<div
className={`${styles.eventType} justifyContent__flex-end`}
style={{
display: 'flex',
justifyContent: 'flex-end',
width: '100%',
}}
>
<div className={styles.eventType}>
<strong
style={{
color,
Expand Down
2 changes: 1 addition & 1 deletion packages/lego-bricks/src/components/Button/ButtonGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type Props = {
export const ButtonGroup = ({
vertical = false,
centered = false,
justifyContent,
justifyContent = 'flex-end',
className,
children,
}: Props) => (
Expand Down

0 comments on commit bf5e2cb

Please sign in to comment.