Fix invite response, small fixes

This commit is contained in:
Natsumi
2025-09-16 16:21:32 +12:00
parent 4c0b2c3299
commit 9a99b37fea
22 changed files with 137 additions and 106 deletions

View File

@@ -238,7 +238,7 @@ function setLoginContainerStyle(isDarkMode) {
transition: background-color 0.3s ease;
}
.x-login-container .el-input__inner {
.x-login-container .el-input__wrapper {
background-color: ${inputBackgroundColor} !important;
border: ${inputBorder} !important;
transition: background-color 0.3s ease, border-color 0.3s ease;

View File

@@ -163,7 +163,10 @@ function copyToClipboard(text, message = 'Copied successfully!') {
})
.catch((err) => {
console.error('Copy failed:', err);
ElMessage.error('Copy failed!');
ElMessage({
message: 'Copy failed!',
type: 'error'
});
});
}