refactor(docs-infra): merge style rules in `_footer.scss` (#40704)
This commit cleans up the styles in `_footer.scss` by merging together blocks that target the same elements. PR Close #40704
This commit is contained in:
parent
f059824b17
commit
568ecf352b
|
@ -49,6 +49,10 @@ footer {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
margin: 8px 0 12px;
|
margin: 8px 0 12px;
|
||||||
color: $white;
|
color: $white;
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
@include font-size(14);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
@ -89,14 +93,7 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
&::after {
|
||||||
h3 {
|
|
||||||
@include font-size(14);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
footer::after {
|
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
@ -110,4 +107,5 @@ footer::after {
|
||||||
top 80px left 160px repeat;
|
top 80px left 160px repeat;
|
||||||
opacity: 0.05;
|
opacity: 0.05;
|
||||||
background-size: 320px auto;
|
background-size: 320px auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue