diff options
| -rw-r--r-- | packages/ui/src/components/toast.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/ui/src/components/toast.css b/packages/ui/src/components/toast.css index de547f9c7..4e6504d06 100644 --- a/packages/ui/src/components/toast.css +++ b/packages/ui/src/components/toast.css @@ -21,6 +21,11 @@ padding: 0; max-height: 100%; overflow-y: auto; + scrollbar-width: none; + + &::-webkit-scrollbar { + display: none; + } } } @@ -101,6 +106,11 @@ min-width: 0; overflow-x: hidden; overflow-y: auto; + scrollbar-width: none; + + &::-webkit-scrollbar { + display: none; + } } [data-slot="toast-title"] { |
