index.scss 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page{
  2. background: #f1f2f3;
  3. }
  4. .panel{
  5. padding:10px;
  6. background: #fff;
  7. }
  8. .billno{
  9. font-size: 32rpx;
  10. font-weight: bold;
  11. letter-spacing: 2px;
  12. }
  13. .mr-5{
  14. margin-right: 5px;
  15. }
  16. .mr-10{
  17. margin-right: 15px;
  18. }
  19. .mt-5{
  20. margin-bottom:5px
  21. }
  22. .small{
  23. font-size: 26rpx;
  24. color:#333;
  25. line-height: 25px;
  26. }
  27. .btn-wrapper {
  28. height: 100%;
  29. }
  30. .btn {
  31. display: inline-flex;
  32. justify-content: center;
  33. align-items: center;
  34. width: 120rpx;
  35. height: 100%;
  36. color: white;
  37. }
  38. .delete-btn {
  39. background-color: #e34d59;
  40. }
  41. .edit-btn {
  42. background-color: #ed7b2f;
  43. }
  44. .favor-btn {
  45. background-color: #0052d9;
  46. }
  47. .column {
  48. flex-direction: column;
  49. }