diff --git a/demo_markdown/docs/drawer/mod.md b/demo_markdown/docs/drawer/mod.md
index 3a09803..234fd4e 100644
--- a/demo_markdown/docs/drawer/mod.md
+++ b/demo_markdown/docs/drawer/mod.md
@@ -39,6 +39,19 @@ view! {
}
```
+### Scroll content
+
+```rust demo
+let show = create_rw_signal(false);
+
+view! {
+
+
+ r#"This being said, the world is moving in the direction opposite to Clarke's predictions. In 2001: A Space Odyssey, in the year of 2001, which has already passed, human beings have built magnificent cities in space, and established permanent colonies on the moon, and huge nuclear-powered spacecraft have sailed to Saturn. However, today, in 2018, the walk on the moon has become a distant memory.And the farthest reach of our manned space flights is just as long as the two-hour mileage of a high-speed train passing through my city. At the same time, information technology is developing at an unimaginable speed. With the entire world covered by the Internet, people have gradually lost their interest in space, as they find themselves increasingly comfortable in the space created by IT. Instead of an exploration of the real space, which is full of real difficulties, people now just prefer to experience virtual space through VR. Just like someone said, "You promised me an ocean of stars, but you actually gave me Facebook.""#
+
+}
+```
+
### Drawer Props
| Name | Type | Default | Desciption |
diff --git a/thaw/src/drawer/drawer.css b/thaw/src/drawer/drawer.css
index a1403e5..e3fb15e 100644
--- a/thaw/src/drawer/drawer.css
+++ b/thaw/src/drawer/drawer.css
@@ -37,7 +37,8 @@
.thaw-drawer > .thaw-card > .thaw-card__content {
flex: 1;
- padding: 20px 28px;
+ padding: 0;
+ overflow: hidden;
}
.thaw-drawer--placement-top {
diff --git a/thaw/src/drawer/mod.rs b/thaw/src/drawer/mod.rs
index 4e66740..90e38d4 100644
--- a/thaw/src/drawer/mod.rs
+++ b/thaw/src/drawer/mod.rs
@@ -1,4 +1,4 @@
-use crate::Card;
+use crate::{Card, Scrollbar};
use leptos::*;
use thaw_components::{CSSTransition, FocusTrap, Teleport};
use thaw_utils::{class_list, mount_style, use_lock_html_scroll, Model, OptionalProp};
@@ -120,7 +120,11 @@ pub fn Drawer(
role="dialog"
aria-modal="true"
>
- {children()}
+
+
+ {children()}
+
+