header.less 886 B

123456789101112131415161718192021222324252627282930313233343536
  1. .toolbar-title {
  2. .ant-input-group-wrapper {
  3. display: inline-block;
  4. vertical-align: middle;
  5. width: 200px;
  6. margin-bottom: 5px;
  7. }
  8. }
  9. .header {
  10. display: flex;
  11. justify-content: space-between;
  12. .toolbar-title {
  13. flex: 1;
  14. text-align: center;
  15. .ant-input-group{
  16. width: 300px;
  17. .input-title {
  18. text-align: center;
  19. font-size: 18px;
  20. border: none;
  21. border-bottom-right-radius: 4px;
  22. border-top-right-radius: 4px;
  23. background-color: transparent;
  24. }
  25. .ant-input-group-addon {
  26. cursor: pointer;
  27. border: none;
  28. background: transparent;
  29. :hover {
  30. color: #40a9ff;
  31. }
  32. }
  33. }
  34. }
  35. }