| 123456789101112131415161718192021222324252627282930313233343536 |
- .toolbar-title {
- .ant-input-group-wrapper {
- display: inline-block;
- vertical-align: middle;
- width: 200px;
- margin-bottom: 5px;
- }
- }
- .header {
- display: flex;
- justify-content: space-between;
- .toolbar-title {
- flex: 1;
- text-align: center;
- .ant-input-group{
- width: 300px;
- .input-title {
- text-align: center;
- font-size: 18px;
- border: none;
- border-bottom-right-radius: 4px;
- border-top-right-radius: 4px;
- background-color: transparent;
- }
- .ant-input-group-addon {
- cursor: pointer;
- border: none;
- background: transparent;
- :hover {
- color: #40a9ff;
- }
- }
- }
- }
- }
|