You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Chrome I get a bug when adding input group under a card-deck. The spacing between buttons and input are off. The reason seem to be the border-spacing: 1.25rem 0; under .card-deck.
Changing the border-collapse: separate; to border-collapse: collapse; under .input-group seems to fix the problem. However, it also affects the spacing between each card.
The text was updated successfully, but these errors were encountered:
In Chrome I get a bug when adding input group under a card-deck. The spacing between buttons and input are off. The reason seem to be the
border-spacing: 1.25rem 0;
under .card-deck.Changing the
border-collapse: separate;
toborder-collapse: collapse;
under .input-group seems to fix the problem. However, it also affects the spacing between each card.The text was updated successfully, but these errors were encountered: