Files
vant/packages/vant-css/src/panel.css
张敏 034c66a77f 修复表单组件样式和单元测试用例 (#7)
* fix: loading small style, search style and dialog style

* fix: scroll to top

* fix mobile scroll

* fix scroll to top

* 文档细节优化

* unit test

* dialog and image-preview unit test

* fix form component style

* fix radio and checkbox style

* fix search component style
2017-04-24 17:33:40 +08:00

48 lines
728 B
CSS

@import './mixins/border_retina.css';
@component-namespace van {
@b panel {
background: #fff;
position: relative;
&::after {
@mixin border-retina (top, bottom);
}
@e header {
padding: 10px 15px;
position: relative;
&::after {
@mixin border-retina (bottom);
}
}
@e title {
font-size: 14px;
color: #333;
}
@e desc {
font-size: 12px;
color: #666;
}
@e status {
font-size: 14px;
position: absolute;
top: 10px;
right: 15px;
color: #FF4444;
}
@e footer {
padding: 10px 15px;
position: relative;
&::after {
@mixin border-retina (top);
}
}
}
}