aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2019-07-09 01:58:35 +0800
committerGitHub <noreply@github.com>2019-07-09 01:58:35 +0800
commit32a3f5ad7b8d30c1d4843152e575770b189146ea (patch)
treec9ed22460a08b4f8abac868a791ca8b0f77af587 /ui/app/css
parent6df65069a24f0aa1ce60cbe9fbc91ee24c2c5def (diff)
downloadtangerine-wallet-browser-32a3f5ad7b8d30c1d4843152e575770b189146ea.tar.gz
tangerine-wallet-browser-32a3f5ad7b8d30c1d4843152e575770b189146ea.tar.zst
tangerine-wallet-browser-32a3f5ad7b8d30c1d4843152e575770b189146ea.zip
Address various UI styling issues (#6744)
* Add loading spinner to pending tx status label. * Add border around account icon in top right * Change style of settings toggle buttons; wrap with local components * Eliminate large space after settings labels when no description * Remove network form from advanced tab of settings * Keep new account container height to contents when in full screen
Diffstat (limited to 'ui/app/css')
-rw-r--r--ui/app/css/itcss/components/new-account.scss6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/css/itcss/components/new-account.scss b/ui/app/css/itcss/components/new-account.scss
index b3aae8eec..162aac38f 100644
--- a/ui/app/css/itcss/components/new-account.scss
+++ b/ui/app/css/itcss/components/new-account.scss
@@ -3,7 +3,11 @@
background-color: #FFFFFF;
box-shadow: 0 0 7px 0 rgba(0,0,0,0.08);
z-index: 25;
- height: 100%;
+ height: unset;
+
+ @media screen and (min-width: 576px) {
+ position: absolute;
+ }
&__header {
display: flex;