Over time working with UIkit I’ve notices that some components get 20px margin “hard-coded” to the bottom, this can’t be removed in settings, only way to lose it is to use custom CSS to overwrite.
For instance, Breadcrumb adds it…
address, dl, fieldset, figure, ol, p, pre, ul {
margin: 0 0 20px 0;
}
In many cases you can use the CSS uk-margin-remove but in some instances, like with the Breadcrumb stack, that doesn’t work.
Is there a reason for this extra 20px being added to some stacks?