Skip to content

Commit 9db8a57

Browse files
author
Sean Yesmunt
authored
Merge pull request lbryio#2040 from lbryio/toast
Change snackbar notification postion to bottom-left
2 parents ce1fd69 + ed2abcc commit 9db8a57

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1919
* Credit card verification messaging ([#2025](https://github.com/lbryio/lbry-desktop/pull/2025))
2020
* Reverse Order & Use System/Location Time/Date ([#2036]https://github.com/lbryio/lbry-desktop/pull/2036)
2121
* Limit file type can be uploaded as thumbnail for publishing ([#2034](https://github.com/lbryio/lbry-desktop/pull/2034))
22+
* Change snackbar notification postion to bottom-left ([#2040](https://github.com/lbryio/lbry-desktop/pull/2040))
2223

2324

2425
### Fixed

src/renderer/scss/component/_snack-bar.scss

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@
55
color: var(--snackbar-color-primary);
66
display: flex;
77
justify-content: space-between;
8-
left: 0;
98
margin-left: auto;
109
margin-right: auto;
1110
max-width: var(--snack-bar-width);
1211
min-width: 300px;
1312
opacity: 0.95;
1413
padding: 14px 20px 10px 20px;
1514
position: fixed;
16-
right: 0;
17-
top: $spacing-vertical;
15+
left: $spacing-vertical;
16+
bottom: $spacing-vertical;
1817
transition: all var(--transition-duration) var(--transition-type);
1918
width: 100%;
2019
z-index: 10000; /*hack to get it over react modal */

0 commit comments

Comments
 (0)