mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
430 B
Plaintext
23 lines
430 B
Plaintext
/**
|
|
* 这里主要是处理tailwindcss与 antd 一起用的时候的兼容问题
|
|
* 与重写部分antd的样式
|
|
*/
|
|
|
|
.ant-message .anticon {
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.ant-typography-expand, .ant-typography-copy {
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.ant-input:hover, .ant-input:focus, .ant-input-focused {
|
|
border-right-width: inherit !important;
|
|
}
|
|
|
|
.ant-tooltip {
|
|
.ant-tooltip-inner {
|
|
background-color: black;
|
|
}
|
|
}
|