Chart.wxss 464 B

1234567891011121314151617181920212223242526
  1. /* components/Chart/Chart.wxss */
  2. .canvas {
  3. width: 100%;
  4. height: 200px;
  5. font-size: 14px;
  6. }
  7. .canvas .btnType{
  8. float: right;
  9. margin-top: -30px;
  10. border: 1px solid #1989fa;
  11. border-radius: 3px;
  12. right: 5px;
  13. color: #fff;
  14. height: 1.4em;
  15. text-align: center;
  16. line-height: 1.4em;
  17. }
  18. .canvas .btnType .chartBtn{
  19. display: inline-block;
  20. min-width: 2.5em;
  21. height: 1.4em;
  22. line-height: 1.4em;
  23. }
  24. .canvas .btnType .active{
  25. background-color: #1989fa
  26. }