cheatsheets/_sass/2017/components/comments-section.scss

26 lines
329 B
SCSS

/*
* Disqus
*/
.comments-section {
& {
display: flex;
}
// Mobile: full width
@media (max-width: 480px) {
& > .comments {
flex: 1 0 100%;
width: 100%;
}
}
// Desktop: partial width
@media (min-width: 481px) {
& > .comments {
flex: 0 1 66%;
min-width: 300px;
}
}
}