2018-07-05 09:59:42 +00:00
|
|
|
@import './assets/styles/global.scss';
|
|
|
|
|
|
|
|
.mob-interviews-link {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: calculateRem(24);
|
|
|
|
|
|
|
|
@media (min-width: $desktop) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-06 11:45:36 +00:00
|
|
|
.interviews-list {
|
2018-07-05 09:59:42 +00:00
|
|
|
|
|
|
|
li {
|
|
|
|
cursor: pointer;
|
2018-07-06 11:45:36 +00:00
|
|
|
outline: none;
|
2018-07-05 09:59:42 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2018-07-06 11:45:36 +00:00
|
|
|
}
|