Merge pull request #2040 from lbryio/toast
Change snackbar notification postion to bottom-left
This commit is contained in:
commit
9db8a571dd
2 changed files with 3 additions and 3 deletions
|
@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
* Credit card verification messaging ([#2025](https://github.com/lbryio/lbry-desktop/pull/2025))
|
||||
* Reverse Order & Use System/Location Time/Date ([#2036]https://github.com/lbryio/lbry-desktop/pull/2036)
|
||||
* Limit file type can be uploaded as thumbnail for publishing ([#2034](https://github.com/lbryio/lbry-desktop/pull/2034))
|
||||
* Change snackbar notification postion to bottom-left ([#2040](https://github.com/lbryio/lbry-desktop/pull/2040))
|
||||
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
color: var(--snackbar-color-primary);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
left: 0;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: var(--snack-bar-width);
|
||||
|
@ -13,8 +12,8 @@
|
|||
opacity: 0.95;
|
||||
padding: 14px 20px 10px 20px;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: $spacing-vertical;
|
||||
left: $spacing-vertical;
|
||||
bottom: $spacing-vertical;
|
||||
transition: all var(--transition-duration) var(--transition-type);
|
||||
width: 100%;
|
||||
z-index: 10000; /*hack to get it over react modal */
|
||||
|
|
Loading…
Reference in a new issue