Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .col-start {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: flex-start;
  6. }
  7. .col-center {
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .row-start {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. justify-content: flex-start;
  18. }
  19. .row-center {
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. justify-content: center;
  24. }
  25. .row-between {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. justify-content: space-between;
  30. }
  31. .bottom-bg {
  32. position: absolute;
  33. left: 46rpx;
  34. right: 46rpx;
  35. bottom: 100rpx;
  36. color: #fff;
  37. height: 96rpx;
  38. border-radius: 16rpx;
  39. background: rgb(72, 207, 60);
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. }
  44. .t-tab-bar {
  45. display: flex;
  46. flex-wrap: nowrap;
  47. align-items: center;
  48. position: fixed;
  49. left: 0;
  50. bottom: 0;
  51. right: 0;
  52. z-index: 99;
  53. display: flex;
  54. padding-bottom: constant(safe-area-inset-bottom);
  55. padding-bottom: env(safe-area-inset-bottom);
  56. background-color: #fff;
  57. }
  58. .t-tab-bar--padding {
  59. padding: 16rpx 40rpx 24rpx 40rpx;
  60. width: 100%;
  61. }