aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/export-text-container/index.scss
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-05-20 14:04:19 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-05-20 14:04:19 +0800
commit4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9 (patch)
treeecc9cfa83e3570fc71389ee1fdfbcd030f416ddb /ui/app/components/export-text-container/index.scss
parent713c77db54e7866da169205d7f665c33a4c626e0 (diff)
downloadtangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.tar
tangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.tar.gz
tangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.tar.bz2
tangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.tar.lz
tangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.tar.xz
tangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.tar.zst
tangerine-wallet-browser-4f6b53c1aa383c05fa3c356adb332fcc6dbf45e9.zip
Update designs for Add Token screen
Diffstat (limited to 'ui/app/components/export-text-container/index.scss')
-rw-r--r--ui/app/components/export-text-container/index.scss52
1 files changed, 52 insertions, 0 deletions
diff --git a/ui/app/components/export-text-container/index.scss b/ui/app/components/export-text-container/index.scss
new file mode 100644
index 000000000..975d62f70
--- /dev/null
+++ b/ui/app/components/export-text-container/index.scss
@@ -0,0 +1,52 @@
+.export-text-container {
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ align-items: center;
+ border: 1px solid $alto;
+ border-radius: 4px;
+ font-weight: 400;
+
+ &__text-container {
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ padding: 20px;
+ border-radius: 4px;
+ background: $alabaster;
+ }
+
+ &__text {
+ resize: none;
+ border: none;
+ background: $alabaster;
+ font-size: 20px;
+ text-align: center;
+ }
+
+ &__buttons-container {
+ display: flex;
+ flex-direction: row;
+ border-top: 1px solid $alto;
+ width: 100%;
+ }
+
+ &__button {
+ padding: 10px;
+ flex: 1;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 12px;
+ cursor: pointer;
+ color: $curious-blue;
+
+ &--copy {
+ border-right: 1px solid $alto;
+ }
+ }
+
+ &__button-text {
+ padding-left: 10px;
+ }
+}