yandex metrika and candidate years_of_exp fix

This commit is contained in:
kurpfish
2021-08-20 11:52:23 +03:00
parent b7463dc44e
commit 832344f0f2
5 changed files with 27 additions and 2 deletions

View File

@ -6,6 +6,8 @@ import 'bootstrap/dist/css/bootstrap.min.css'
import './fonts/stylesheet.css'
import { ProtectedRoute } from './components/ProtectedRoute/ProtectedRoute';
import { YMInitializer } from 'react-yandex-metrika';
import AuthPageForDevelopers from './pages/AuthPageForDevelopers';
import AuthPageForPartners from './pages/AuthPageForPartners';
import HomePage from './pages/HomePage';
@ -34,8 +36,20 @@ const App = (props) => {
<ProtectedRoute component={()=><div>Page not found</div>} />
</Switch>
</Router>
<YMInitializer
accounts={[84188125]}
options={{
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
}}
version="2"
/>
</>
)
}
export default App

View File

@ -180,9 +180,10 @@
@media (max-width: 575.98px) {
.candidate__main__description > img {
width: 50%;
/* width: 50%;
display: block;
margin: 0 auto;
margin: 0 auto; */
display: none;
}
}

View File

@ -142,4 +142,8 @@
display: flex;
flex-direction: column;
}
.candidateSidebar__info__e, .candidateSidebar__info__y {
width: 180px;
}
}