1234567891011121314151617181920212223242526 |
- /* components/lineChart/lineChart.wxss */
- .canvas {
- width: 100%;
- height: 200px;
- font-size: 14px;
- }
- .canvas .btnType{
- position: absolute;
- top: -2em;
- border: 1px solid #1989fa;
- border-radius: 3px;
- right: 5px;
- color: #fff;
- height: 1.4em;
- line-height: 1.4em;
- text-align: center;
- }
- .canvas .btnType .chartBtn{
- display: inline-block;
- min-width: 4em;
- height: 1.4em;
- line-height: 1.4em;
- }
- .canvas .btnType .active{
- background-color: #1989fa
- }
|