Skip to content

Commit

Permalink
Fix add feed block not displayed on click
Browse files Browse the repository at this point in the history
  • Loading branch information
Simounet committed Apr 15, 2021
1 parent 8aeaf0d commit d6a2f71
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
10 changes: 5 additions & 5 deletions css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/style.css.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,16 @@ $border-color-active: white;
}

.feed-add {
display: none;
padding: 10px 5px;
width: 100%;
text-align: center;
box-sizing: border-box;
z-index: 100;

&[data-is-opened="true"] {
display: block;
}
}

.feed-add-title {
Expand Down Expand Up @@ -333,8 +338,6 @@ $feeds-list-toggle-transition: transform 0.3s;
}

&[data-is-opened="false"] {
display: block;

@media($breakpoint-max) {
transform: translate3d(0, -100%, 0);
}
Expand Down Expand Up @@ -396,7 +399,6 @@ $feeds-list-toggle-transition: transform 0.3s;
background-color: #4b4b4b;
}

html:not(.no-js) .feed-add,
html:not(.no-js) .feed--closed {
display: none;
}
Expand Down

0 comments on commit d6a2f71

Please sign in to comment.