12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .social-navigation {
- // margin-top: calc(-1.5 * #{map-deep-get($config-global, "spacing", "vertical")});
- & > div > ul {
- align-content: center;
- display: flex;
- list-style: none;
- margin: 0;
- padding-left: 0;
- & > li:first-of-type > a {
- padding-left: 0;
- }
- & > li:last-of-type > a {
- padding-right: 0;
- }
- }
- a {
- color: #{map-deep-get($config-header, "social-nav", "color", "link")};
- display: inline-block;
- padding: 0 #{map-deep-get($config-header, "social-nav", "link-padding")};
- &:hover {
- color: #{map-deep-get($config-header, "social-nav", "color", "link-hover")};
- }
- }
- svg {
- fill: currentColor;
- vertical-align: middle;
- }
- }
- .site-title + .social-navigation,
- .site-description + .social-navigation {
- @include media(tablet) {
- }
- }
|