diff --git a/example/docs/zh-CN/guide/changelog.md b/example/docs/zh-CN/guide/changelog.md
index eda1f002..79db50dd 100644
--- a/example/docs/zh-CN/guide/changelog.md
+++ b/example/docs/zh-CN/guide/changelog.md
@@ -20,6 +20,7 @@
[新增] tab-item 选项卡组件 closable 属性, 控制当前选项卡 close 支持。
[修复] button 按钮 disabled 为 true 时, 触发 click 事件。
[修复] menu-item 与 sub-menu 组件的 title 属性必填警告。
+ [修复] layout 组件 side 因 flex 布局宽度不固定。
[优化] layer 的 children slot 渲染机制。
[升级] layer-vue 1.2.5。
[升级] vue 3.2.27。
diff --git a/src/module/layout/index.less b/src/module/layout/index.less
index 9d862d7c..7fd0a397 100644
--- a/src/module/layout/index.less
+++ b/src/module/layout/index.less
@@ -1,9 +1,7 @@
.layui-layout {
- display: flex;
flex: 1;
+ display: flex;
flex-basis: auto;
- height: 100%;
- width: 100%;
box-sizing: border-box;
}