diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2018-02-14 02:50:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 02:50:19 +0800 |
commit | ee1197192f2f539d5e63c8d65f77a5cd94bbd7df (patch) | |
tree | 16917a2467eb28d2fc24212d0ad1416480b716a5 /old-ui/app | |
parent | 96d40ee618fc158c0e447f770d9077ba145ef91f (diff) | |
parent | cd976a2765b9e442642faec8a985c049f8cb393b (diff) | |
download | tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.tar tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.tar.gz tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.tar.bz2 tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.tar.lz tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.tar.xz tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.tar.zst tangerine-wallet-browser-ee1197192f2f539d5e63c8d65f77a5cd94bbd7df.zip |
Merge pull request #3209 from danjm/MM-634-newui-reset-account
[NewUI] Add reset account button to new UI.
Diffstat (limited to 'old-ui/app')
-rw-r--r-- | old-ui/app/css/index.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/old-ui/app/css/index.css b/old-ui/app/css/index.css index 3bb64647a..cdb4cc439 100644 --- a/old-ui/app/css/index.css +++ b/old-ui/app/css/index.css @@ -761,4 +761,51 @@ div.message-container > div:first-child { right: 17.5px; font-family: sans-serif; cursor: pointer; +} + +.notification-modal__wrapper { + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: center; + position: relative; + border: 1px solid #dedede; + box-shadow: 0 0 2px 2px #dedede; + font-family: Roboto; +} + +.notification-modal__header { + background: #f6f6f6; + width: 100%; + display: flex; + justify-content: center; + padding: 30px; + font-size: 22px; + color: #1b344d; + height: 79px; +} + +.notification-modal__message { + padding: 20px; + width: 100%; + display: flex; + justify-content: center; + font-size: 17px; + color: #1b344d; +} + +.notification-modal__buttons { + display: flex; + justify-content: space-evenly; + width: 100%; + margin-bottom: 24px; + padding: 0px 42px; +} + +.notification-modal__buttons__btn { + cursor: pointer; +} + +.notification-modal__link { + color: #2f9ae0; }
\ No newline at end of file |