demo.scss 822 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .u-view {
  2. padding: 40px 20px 0px 20px;
  3. &__title {
  4. font-size: 14px;
  5. color: rgb(143, 156, 162);
  6. margin-bottom: 10px;
  7. }
  8. }
  9. .u-block{
  10. padding: 14px;
  11. &__section{
  12. margin-bottom:10px;
  13. }
  14. &__title {
  15. margin-top:10px;
  16. font-size: 15px;
  17. color: $u-content-color;
  18. margin-bottom:10px;
  19. }
  20. &__flex{
  21. /* #ifndef APP-NVUE */
  22. display: flex;
  23. /* #endif */
  24. }
  25. }
  26. // 使用了cell组件的icon图片样式
  27. .u-cell-icon {
  28. width: 36rpx;
  29. height: 36rpx;
  30. margin-right: 8rpx;
  31. }
  32. .u-page {
  33. padding: 15px 15px 40px 15px;
  34. }
  35. .u-demo-block {
  36. flex: 1;
  37. margin-bottom: 23px;
  38. &__content {
  39. /* #ifndef APP-NVUE */
  40. display: flex;
  41. /* #endif */
  42. // flex-direction: row!important;
  43. // align-items: center;
  44. // flex-wrap: wrap;
  45. }
  46. &__title {
  47. font-size: 14px;
  48. color: rgb(143, 156, 162);
  49. margin-bottom: 8px;
  50. }
  51. }