send-message.module.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .sendMessage {
  2. position: fixed;
  3. bottom: 0;
  4. height: 88px;
  5. width: calc(385px - 32px);
  6. display: flex;
  7. align-items: center;
  8. padding: 0 16px;
  9. .form {
  10. display: flex;
  11. align-items: center;
  12. width: 100%;
  13. background-color: var(--message-color);
  14. border-radius: 60px;
  15. }
  16. :global {
  17. .el-input {
  18. border-radius: 60px;
  19. overflow: hidden;
  20. font-size: 16px;
  21. // background-color: transparent;
  22. }
  23. .el-input__inner {
  24. height: 46px;
  25. line-height: 46px;
  26. padding-left: 20px;
  27. background-color: transparent;
  28. border: 0;
  29. color: var(--live-color)
  30. }
  31. .el-button {
  32. border: 0;
  33. background-color: #00A79D;
  34. height: 46px;
  35. line-height: 46px;
  36. border-radius: 46px;
  37. color: var(--live-color);
  38. font-weight: 600;
  39. padding: 0 23px;
  40. font-size: 16px;
  41. &.is-disabled {
  42. background-color: var(--el-button-disabled-bg-color);
  43. border-color: var(--el-button-disabled-border-color);
  44. }
  45. }
  46. }
  47. }