gitlab-org--gitlab-foss/app/assets/stylesheets/sections/issuable.scss

26 lines
364 B
SCSS
Raw Normal View History

2015-02-18 00:14:49 +00:00
@media (max-width: $screen-sm-max) {
.issuable-affix {
margin-top: 20px;
}
}
@media (max-width: $screen-md-max) {
.issuable-affix {
position: static;
}
}
@media (min-width: $screen-md-max) {
.issuable-affix {
&.affix-top {
position: static;
}
&.affix {
position: fixed;
top: 70px;
width: 220px;
}
}
}