Leven: Add bottom margin to site-logo when it is not the last element
This commit is contained in:
parent
914fb51661
commit
882b542143
3 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue