diff options
author | LASER-Yi <[email protected]> | 2021-05-09 21:46:41 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2021-05-09 21:46:41 +0800 |
commit | 38fc3b36fed578aa3eba3752f8e66e87ea90c8c5 (patch) | |
tree | 40a1ac152e3b97a737e07cb63da3f0cb002eaf48 | |
parent | 8b4161642915f4ce9cbf2dc21c691a062c8ed986 (diff) | |
download | bazarr-38fc3b36fed578aa3eba3752f8e66e87ea90c8c5.tar.gz bazarr-38fc3b36fed578aa3eba3752f8e66e87ea90c8c5.zip |
Tweak style of progress notification
-rw-r--r-- | frontend/src/App/notifications/index.tsx | 2 | ||||
-rw-r--r-- | frontend/src/App/notifications/style.scss | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/frontend/src/App/notifications/index.tsx b/frontend/src/App/notifications/index.tsx index 0193eae2b..da083b9a2 100644 --- a/frontend/src/App/notifications/index.tsx +++ b/frontend/src/App/notifications/index.tsx @@ -99,7 +99,7 @@ const ProgressToast: FunctionComponent<ProgressHolderProps> = ({ <span className="mr-auto">Background Task</span> </Toast.Header> <Toast.Body> - <div className="mb-2 mt-1 text-nowrap text-truncate"> + <div className="mb-2 mt-1"> <FontAwesomeIcon className="mr-2" icon={faPaperPlane} diff --git a/frontend/src/App/notifications/style.scss b/frontend/src/App/notifications/style.scss index 27f4fac59..8fb53b696 100644 --- a/frontend/src/App/notifications/style.scss +++ b/frontend/src/App/notifications/style.scss @@ -13,8 +13,7 @@ padding: 1rem; .toast { - max-width: 260px; - min-width: 200px; + width: 16rem; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); |