edit.wxss 713 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @charset "UTF-8";
  2. /**
  3. * uni-app内置的常用样式变量
  4. */
  5. /* 行为相关颜色 */
  6. /* 文字基本颜色 */
  7. /* 背景颜色 */
  8. /* 边框颜色 */
  9. /* 尺寸变量 */
  10. /* 文字尺寸 */
  11. /* 图片尺寸 */
  12. /* Border Radius */
  13. /* 水平间距 */
  14. /* 垂直间距 */
  15. /* 透明度 */
  16. /* 文章场景相关 */
  17. page {
  18. background-color: #ffffff;
  19. }
  20. .example {
  21. padding: 15px;
  22. background-color: #fff;
  23. }
  24. .segmented-control {
  25. margin-bottom: 15px;
  26. }
  27. .button-group {
  28. margin-top: 15px;
  29. display: flex;
  30. justify-content: space-around;
  31. }
  32. .form-item {
  33. display: flex;
  34. align-items: center;
  35. flex: 1;
  36. }
  37. .button {
  38. display: flex;
  39. align-items: center;
  40. height: 35px;
  41. line-height: 35px;
  42. margin-left: 10px;
  43. }