32 lines
518 B
SCSS
32 lines
518 B
SCSS
.heading {
|
|
font-size: 0;
|
|
margin-bottom: 32px;
|
|
margin-top: 0;
|
|
@media (max-width: 1024px) {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
&::after {
|
|
content: "Você também pode gostar:";
|
|
font-family: "Open Sans";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
color: #575757;
|
|
|
|
@media (max-width: 768px) {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.container {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|