Merge pull request #4271 from consul/sdg_local_targets

Add SDG local targets
This commit is contained in:
Javi Martín
2020-12-16 11:35:12 +01:00
committed by GitHub
30 changed files with 622 additions and 7 deletions

View File

@@ -614,6 +614,16 @@ code {
}
}
.admin-content > header {
align-items: flex-start;
display: flex;
a {
@include hollow-button;
margin-left: auto;
}
}
.admin-content .select-geozone,
.admin-content .select-heading {

View File

@@ -198,3 +198,14 @@
transform: translateX(-50%);
}
}
@mixin hollow-button($color: $link) {
@include button($style: hollow, $background: $color);
font-size: $base-font-size;
margin-bottom: 0;
&:focus,
&:hover {
text-decoration: none;
}
}