-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from hive-keychain/pre-prod
v3.6
- Loading branch information
Showing
43 changed files
with
996 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
html, | ||
body { | ||
display: flex; | ||
height: 100%; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
html { | ||
background-image: url('assets/images/background/detached-popup-background.png'); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
} | ||
#root { | ||
display: flex; | ||
height: 100%; | ||
align-items: center; | ||
justify-content: center; | ||
.theme { | ||
border: solid 1px var(--card-border-color); | ||
border-radius: 8px; | ||
width: 435px; | ||
height: 600px; | ||
color: var(--main-font-color); | ||
padding: 0px !important; | ||
box-sizing: border-box; | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: 24px; | ||
font-size: 16px; | ||
position: relative; | ||
.App { | ||
margin-left: unset !important; | ||
.splashscreen { | ||
width: 435px !important; | ||
height: 600px !important; | ||
position: relative !important; | ||
.loading-animation-container { | ||
width: unset !important; | ||
} | ||
.overlay { | ||
border: solid 1px grey !important; | ||
border-radius: 8px !important; | ||
width: 435px !important; | ||
height: 600px !important; | ||
.top { | ||
position: relative !important; | ||
} | ||
.bottom { | ||
top: 0px; | ||
position: absolute; | ||
left: 0px; | ||
} | ||
} | ||
} | ||
.home-page-content { | ||
border-radius: 0 0 8px 8px !important; | ||
} | ||
.custom-select-handle { | ||
height: unset !important; | ||
} | ||
/* common-styles */ | ||
.select-account-section { | ||
margin: 0px !important; | ||
} | ||
.fullsize { | ||
width: 100% !important; | ||
} | ||
.automated-tasks-page { | ||
.select-account-section { | ||
margin: 0px !important; | ||
width: 100% !important; | ||
} | ||
} | ||
.favorite-accounts-page, | ||
.export-transactions-page, | ||
.settings-manage-account, | ||
.settings-manage-account-authorities { | ||
.select-account-section { | ||
margin: 0px 20px !important; | ||
width: calc(100% - 40px) !important; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
@-moz-document url-prefix() { | ||
div:not(.scrollable) { | ||
scrollbar-width: none; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, shrink-to-fit=no" | ||
/> | ||
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" /> | ||
<link href="assets/fonts/googleFonts.css" rel="stylesheet" /> | ||
|
||
<!-- <link rel="stylesheet" href="https://unpkg.com/@djthoms/pretty-checkbox" /> --> | ||
<link rel="stylesheet" href="assets/pretty-checkbox.min.css" /> | ||
<link rel="stylesheet" href="assets/extra-styles/detached_window.css" /> | ||
<title>Hive Keychain</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<noscript> You need to enable JavaScript to run this app. </noscript> | ||
<script src="hiveTxBundle.js"></script> | ||
<script src="popupBundle.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.