Redesign toasts (#103)

* feat(frontend): custom toast

* refactor(frontend): move toast width styling to globals

Co-authored-by: sct <sct@users.noreply.github.com>
This commit is contained in:
Alex Zoitos
2020-10-08 06:12:18 -04:00
committed by GitHub
parent 65b67abae6
commit 7cb92028fb
3 changed files with 114 additions and 3 deletions

View File

@@ -21,10 +21,14 @@ body {
}
.hide-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.toast {
width: 360px;
}