Merge pull request #5279 from jensconsul/admin_panel_branch

Add information about the project to admin index
This commit is contained in:
Javi Martín
2023-10-24 15:23:33 +02:00
committed by GitHub
9 changed files with 87 additions and 10 deletions

View File

@@ -38,10 +38,6 @@ $table-header: #ecf1f6;
small {
color: $text-medium;
}
&.title {
text-transform: uppercase;
}
}
h3 {

View File

@@ -0,0 +1,31 @@
.admin-dashboard-index {
> header h2 {
text-transform: uppercase;
border-bottom: 1px solid $border;
}
address {
> :not(:last-child) {
&::after {
content: "";
display: block;
margin-bottom: $line-height / 3;
}
}
a {
&[href^="mailto:"] {
@include has-fa-icon(envelope, regular);
}
&[href^="http"] {
@include has-fa-icon(globe, solid);
}
&::before {
margin-#{$global-right}: 0.2em;
transform: translateY(-0.2em);
}
}
}
}