master
Boris Voropaev 2024-05-30 10:01:06 +03:00
parent 472b10b4f0
commit 63e11519f0
4 changed files with 14 additions and 2 deletions

View File

@ -17,7 +17,6 @@ export class SEOService {
) )
.subscribe( .subscribe(
(event)=>{ (event)=>{
console.log('Seo', event);
let url = event.url let url = event.url
let data = this.seoData[url] let data = this.seoData[url]
if(data){ if(data){

View File

@ -76,6 +76,9 @@
line-height: 28px; line-height: 28px;
} }
} }
h5{
margin: 0;
}
} }
} }
} }

View File

@ -46,6 +46,11 @@
border-radius: 4px; border-radius: 4px;
border: 1px solid var(--clr-gr); border: 1px solid var(--clr-gr);
resize: none; resize: none;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
&.ng-untouched.ng-invalid{ &.ng-untouched.ng-invalid{
box-shadow: 0px 0px 0px 2px var(--clr-warning); box-shadow: 0px 0px 0px 2px var(--clr-warning);
} }

View File

@ -39,7 +39,6 @@
flex-direction: column-reverse; flex-direction: column-reverse;
flex-wrap: wrap; flex-wrap: wrap;
gap: 30px; gap: 30px;
order: -1;
>div{ >div{
width: calc(50% - 15px); width: calc(50% - 15px);
box-shadow: 0 0 0 30px #FFF; box-shadow: 0 0 0 30px #FFF;
@ -61,3 +60,9 @@
position: static; position: static;
margin-block: -80px 80px; margin-block: -80px 80px;
} }
@media screen and (max-width: 1024px){
.solution-right{
order: -1;
}
}