Browse Source

Remove absolute value in toggle group (#3213)

pull/3226/head
Oscar Hinton 3 years ago committed by GitHub
parent
commit
75cd41b9b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libs/components/src/toggle-group/toggle.component.ts

2
libs/components/src/toggle-group/toggle.component.ts

@ -70,7 +70,7 @@ export class ToggleComponent { @@ -70,7 +70,7 @@ export class ToggleComponent {
// Fix for badge being pushed slightly lower when inside a button.
// Insipired by bootstrap, which does the same.
"[&>[bitBadge]]:tw-relative",
"[&>[bitBadge]]:-tw-top-[1px]",
"[&>[bitBadge]]:tw--top-px",
];
}

Loading…
Cancel
Save