Leven: Add bottom margin to site-logo when it is not the last element

This commit is contained in:
Allan Cole 2019-07-25 15:41:28 -04:00
parent 914fb51661
commit 882b542143
3 changed files with 12 additions and 0 deletions

View file

@ -44,6 +44,10 @@ a {
max-width: calc(100% - 100px - #{map-deep-get($config-global, "spacing", "unit")});
}
.site-logo:not(:last-child) {
margin-bottom: #{map-deep-get($config-global, "spacing", "unit")};
}
/**
* CSS-grid Desktop Menu
*/

View file

@ -3221,6 +3221,10 @@ p:not(.site-title) a:hover {
max-width: calc(100% - 100px - 16px);
}
.site-logo:not(:last-child) {
margin-bottom: 16px;
}
/**
* CSS-grid Desktop Menu
*/

View file

@ -3226,6 +3226,10 @@ p:not(.site-title) a:hover {
max-width: calc(100% - 100px - 16px);
}
.site-logo:not(:last-child) {
margin-bottom: 16px;
}
/**
* CSS-grid Desktop Menu
*/