Commit f677292d authored by 杨奕's avatar 杨奕 Committed by GitHub

Container: forbid shrinking for Aside, Header and Footer (#9812)

parent c6e4a11b
......@@ -11,7 +11,7 @@
],
"typings": "types/index.d.ts",
"scripts": {
"bootstrap": "yarn",
"bootstrap": "yarn || npm i",
"build:file": "node build/bin/iconInit.js & node build/bin/build-entry.js & node build/bin/i18n.js & node build/bin/version.js",
"build:theme": "node build/bin/gen-cssfile && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk",
"build:utils": "cross-env BABEL_ENV=utils babel src --out-dir lib --ignore src/index.js",
......
......@@ -3,4 +3,5 @@
@include b(aside) {
overflow: auto;
box-sizing: border-box;
flex-shrink: 0;
}
......@@ -4,4 +4,5 @@
@include b(footer) {
padding: $--footer-padding;
box-sizing: border-box;
flex-shrink: 0;
}
......@@ -4,4 +4,5 @@
@include b(header) {
padding: $--header-padding;
box-sizing: border-box;
flex-shrink: 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment