mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-07-24 21:46:07 +00:00
b319dd0c3a
The .tg-icon override (display: inline-block; vertical-align: -2px) defeated the default .anticon flex centering that every other card action icon relies on, so the icon rendered ~2px below the @XrayUI text. Dropping the override lets AntD center it like its neighbors.
52 lines
899 B
CSS
52 lines
899 B
CSS
@media (max-width: 768px) {
|
|
.index-page .content-area {
|
|
padding: 12px;
|
|
padding-top: 64px;
|
|
}
|
|
}
|
|
|
|
.index-page .action {
|
|
cursor: pointer;
|
|
justify-content: center;
|
|
max-width: 100%;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.index-page .action > span:not(.anticon) {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
min-width: 0;
|
|
}
|
|
|
|
.index-page .action-update {
|
|
color: var(--ant-color-warning);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.index-page .action-update .anticon {
|
|
color: var(--ant-color-warning);
|
|
}
|
|
|
|
.index-page .history-tag {
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-inline-end: 0;
|
|
}
|
|
|
|
.index-page .ip-toggle-icon {
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.index-page .ip-hidden .ant-statistic-content-value {
|
|
filter: blur(6px);
|
|
transition: filter 0.2s ease;
|
|
}
|
|
|
|
.index-page .ip-visible .ant-statistic-content-value {
|
|
filter: none;
|
|
}
|