Buttons.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // @import '@/utils/common.scss';
  2. // /* #ifdef weapp */
  3. // .btn{
  4. // background-color: $themeColor;
  5. // border: none;
  6. // height: 90px;
  7. // border-radius: 45px;
  8. // }
  9. // .outline_btn{
  10. // border: solid 4px $themeColor !important;
  11. // background-color: transparent;
  12. // color: $themeColor;
  13. // border: none;
  14. // height: 90px !important;
  15. // border-radius: 45px !important;
  16. // }
  17. // /* #endif */
  18. // /* #ifdef rn */
  19. // .btn{
  20. // background-color: $themeColor;
  21. // height: 90px;
  22. // border-radius: 45px;
  23. // }
  24. // .outline_btn{
  25. // border-style: solid;
  26. // border-width: 4px;
  27. // border-color: $themeColor;
  28. // background-color: transparent;
  29. // color: $themeColor;
  30. // height: 90px;
  31. // border-radius: 45px;
  32. // }
  33. // /* #endif */
  34. // .btn::after{
  35. // border: 0;
  36. // }
  37. @import '@/utils/common.scss';
  38. .texted {
  39. // background: linear-gradient(to right, red, blue);
  40. -webkit-background-clip: text;
  41. background-clip: text;
  42. color: transparent;
  43. }
  44. /* #ifdef weapp */
  45. .mixed {
  46. background: linear-gradient(90deg, $fastColor 0%, $sleepColor 100%);
  47. -webkit-background-clip: text;
  48. background-clip: text;
  49. color: transparent;
  50. }
  51. .textClass {
  52. height: '100%';
  53. line-height: '100%';
  54. }
  55. /* #endif */
  56. /* #ifdef rn */
  57. .mixed {
  58. -webkit-background-clip: text;
  59. background-clip: text;
  60. color: transparent;
  61. }
  62. /* #endif */
  63. .elevated {
  64. display: flex;
  65. align-items: center;
  66. justify-content: center;
  67. flex-direction: row;
  68. }
  69. .outlined{
  70. box-sizing: border-box;
  71. align-items: center;
  72. justify-content: center;
  73. flex-direction: row;
  74. }