diff options
author | Dan <danjm.com@gmail.com> | 2018-02-09 01:18:25 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-02-09 07:53:16 +0800 |
commit | cd976a2765b9e442642faec8a985c049f8cb393b (patch) | |
tree | 67994c756bf66d2f0395d94d79cf95fe2685502b /old-ui/app/css | |
parent | f39222c9afd9dcab4c6234940eb9a9cb06dbc6f0 (diff) | |
download | dexon-wallet-cd976a2765b9e442642faec8a985c049f8cb393b.tar.gz dexon-wallet-cd976a2765b9e442642faec8a985c049f8cb393b.tar.zst dexon-wallet-cd976a2765b9e442642faec8a985c049f8cb393b.zip |
Add reset account button to new UI.
Diffstat (limited to 'old-ui/app/css')
-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 3bb64647..cdb4cc43 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 |