aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/generic
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2019-08-03 04:31:26 +0800
committerGitHub <noreply@github.com>2019-08-03 04:31:26 +0800
commit9d5be5d29fcdab1273e30810f87de4624b8622a1 (patch)
tree60d59d7c4d72c2af25c711c7c805142e94d28989 /ui/app/css/itcss/generic
parentdadda918b4f2b82c6da82c6d0605d9134868202f (diff)
downloadtangerine-wallet-browser-9d5be5d29fcdab1273e30810f87de4624b8622a1.tar.gz
tangerine-wallet-browser-9d5be5d29fcdab1273e30810f87de4624b8622a1.tar.zst
tangerine-wallet-browser-9d5be5d29fcdab1273e30810f87de4624b8622a1.zip
New notification fixes (#6955)
* Replace use of backup-notification with use of home notification * Pin notifications relative to window * Remove unneeded isRequired condition on some home.component properties * Refactor rendering of home notifications * UX for multiple notifications * Adds dismissal to provider request notification. * Fix test failures The e2e tests have been updated to reference `home-notification` classnames instead of the removed `background-notification`. The active tab proptypes and default values were updated as well.
Diffstat (limited to 'ui/app/css/itcss/generic')
-rw-r--r--ui/app/css/itcss/generic/index.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss
index 771008205..aaf6c7c0e 100644
--- a/ui/app/css/itcss/generic/index.scss
+++ b/ui/app/css/itcss/generic/index.scss
@@ -130,3 +130,14 @@ input.form-control {
overflow: hidden;
text-overflow: ellipsis;
}
+
+.pinned-to-bottom {
+ position: absolute;
+ bottom: 0px;
+}
+
+.pinned-to-bottom-right {
+ position: absolute;
+ bottom: 0px;
+ right: 0;
+}