38 lines
590 B
SCSS
38 lines
590 B
SCSS
@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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.interviews-list-wrap .modal {
|
|
|
|
@media (min-width: $desktop) {
|
|
display: block;
|
|
width: calculateRem($desktop-related-interviews-width);
|
|
}
|
|
|
|
li {
|
|
font-size: calculateRem(14);
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|