App.vue 668 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. },
  5. onShow: function() {
  6. },
  7. onHide: function() {
  8. }
  9. }
  10. </script>
  11. <style lang="scss">
  12. @import "uview-ui/index.scss";
  13. html,body,page{
  14. background-color: $uni-bg-color-grey;
  15. }
  16. .select-hover-class{ //首页导航栏按钮
  17. background-color: $uni-color-subtitle !important;
  18. }
  19. .message-hover-class{ //评论区 点击
  20. background-color: $uni-bg-color-hover !important;
  21. }
  22. .contentType2-hover-class{ //语音信息点击
  23. background-color: #c7c6c6 !important;
  24. }
  25. image{
  26. will-change: transform;
  27. }
  28. .u-actionsheet-cancel,
  29. .u-action-sheet-itemz{
  30. font-size: 28rpx !important;
  31. }
  32. </style>