Skip to content
Snippets Groups Projects
Commit 328db800 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Fix lint errors.

parent 7d4e24cb
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@
// find the matching dropdown
let match = $(`.select2-selection[aria-owns="${selectId}"]`);
if (match.length !== 0){
if (match.length !== 0) {
// if the dropdown contains a clear class, the filters are active
if ($(match[0]).find('span.select2-selection__clear').length !== 0) {
match[0].classList.add(filterActiveClass);
......
......@@ -337,20 +337,14 @@
&__comments {
display: grid;
grid-template-areas: 'message'
'visibility'
'actions';
grid-template-rows: auto
auto
auto;
grid-template-areas: 'message' 'visibility' 'actions';
grid-template-rows: auto auto auto;
grid-template-columns: 1fr;
@include media-query(tablet-landscape) {
grid-template-areas: 'message visibility'
'actions actions';
grid-template-rows: auto
auto;
grid-template-areas: 'message visibility' 'actions actions';
grid-template-rows: auto auto;
grid-template-columns: 2fr 1fr;
column-gap: 2rem;
......@@ -367,7 +361,7 @@
grid-area: visibility;
}
#comment_form-submit {
.button {
grid-area: actions;
max-width: 210px;
text-align: center;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment