Skip to content

Commit

Permalink
Merge pull request #26 from jdi-testing/BugFix/Header
Browse files Browse the repository at this point in the history
BugFix:Issue with disappearing header was fixed.
  • Loading branch information
MariiaNebesnova authored Oct 25, 2021
2 parents 2d9525b + 0803cc2 commit 974466b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "JDN",
"description": "",
"devtools_page": "index.html",
"version": "3.0.60",
"version": "3.0.61",
"permissions": [
"activeTab",
"tabs",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jdi-react-extension",
"version": "3.0.60",
"version": "3.0.61",
"description": "jdi react extension",
"scripts": {
"start": "npm run webpack",
Expand Down
2 changes: 1 addition & 1 deletion src/js/blocks/autoFind/components/ControlBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const ControlBar = () => {
<span className="jdn__header-text">Back-end v {backendVer}</span>
</Space>
</div>
<Space size={[30, 0]}>
<Space size={[30, 0]} className="header__space" >
<a className="jdn__header-link" href="#" hidden={!allowRemoveElements} onClick={handleReportProblem}>
Report a problem
</a>
Expand Down
6 changes: 5 additions & 1 deletion src/js/blocks/autoFind/components/autoFind.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}

.jdn__autofind {
width: 100%;
min-width: 310px;
height: 100%;
overflow-x: auto;
background-color: #f7faff;
Expand Down Expand Up @@ -373,6 +373,10 @@
}

@media screen and (max-width: 600px) {
.header__space {
gap: 0 !important;
}

.jdn {
&__header {
padding: 12.5px 16px;
Expand Down

0 comments on commit 974466b

Please sign in to comment.