Skip to content

Commit

Permalink
Merge pull request #3 from wpdas/staging
Browse files Browse the repository at this point in the history
fix topbar
  • Loading branch information
wpdas committed Apr 9, 2024
2 parents dc36cd7 + b931798 commit ed9d7d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"deploy:testnet": "npm run build; alem deploy --network testnet"
},
"dependencies": {
"alem": "^1.0.0-beta.13"
"alem": "^1.0.0-beta.14"
},
"devDependencies": {
"@types/styled-components": "^5.1.26",
Expand Down
5 changes: 3 additions & 2 deletions src/components/TopBar/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
position: fixed;
width: 100%;
left: 0px;
top: 56px;
/* top: 56px; */
top: calc(-1 * var(--body-top-padding, 0) + 80px);
background-color: #103144;
padding: 1rem;
justify-content: center;

@media screen and (max-width: 442px) {
top: 75px;
top: calc(-1 * var(--body-top-padding, 0) + 100px);
}
}

Expand Down

0 comments on commit ed9d7d9

Please sign in to comment.