submitMsg.wxss 986 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* pages/msg/submitMsg.wxss */
  2. .publishContainer {
  3. width: 100%;
  4. height: 100%;
  5. position: fixed;
  6. overflow: hidden;
  7. }
  8. .inputBox {
  9. width: 100%;
  10. height: 80rpx;
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: center;
  14. white-space: nowrap;
  15. }
  16. .input {
  17. width: 400rpx;
  18. height: 80rpx;
  19. background-color: transparent;
  20. font-size: 30rpx;
  21. border-bottom: 1px gray solid;
  22. }
  23. .photoBox {
  24. width: 100%;
  25. height: 600rpx;
  26. display: flex;
  27. flex-direction: row;
  28. justify-content: center;
  29. white-space: nowrap;
  30. margin-top: 20rpx;
  31. }
  32. .photo {
  33. width: 600rpx;
  34. height: 600rpx;
  35. background-color: yellowgreen;
  36. }
  37. .menuBox {
  38. width: 100%;
  39. height: 80rpx;
  40. margin-top: 20rpx;
  41. display: inline-flex;
  42. flex-direction: column;
  43. justify-content: center;
  44. }
  45. .buttonBox {
  46. width: 100%;
  47. height: 80rpx;
  48. display: flex;
  49. flex-direction: row;
  50. white-space: nowrap;
  51. justify-content: center;
  52. }
  53. .titleIcon {
  54. height: 80rpx;
  55. width: 80rpx;
  56. margin-right: 40rpx;
  57. }