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(
(event)=>{
console.log('Seo', event);
let url = event.url
let data = this.seoData[url]
if(data){

View File

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

View File

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

View File

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