33 lines
542 B
SCSS
33 lines
542 B
SCSS
.comment_replying {
|
|
.comment__input {
|
|
border: 12px solid #eee;
|
|
}
|
|
|
|
.comment__score {
|
|
top: 4px;
|
|
right: 0;
|
|
}
|
|
|
|
// it isn't mobile first, but it's fine here
|
|
@media (hover: none) and (max-width: 768px) {
|
|
border: 8px solid #eee;
|
|
padding-bottom: 0;
|
|
|
|
.comment__body {
|
|
padding: 8px 8px 0;
|
|
}
|
|
|
|
.comment__input {
|
|
border-left-width: 0;
|
|
border-right-width: 0;
|
|
border-bottom-width: 0;
|
|
border-top-width: 8px;
|
|
}
|
|
|
|
.comment__score {
|
|
top: 12px;
|
|
right: 8px;
|
|
}
|
|
}
|
|
}
|