Files
rustdesk-api-web/src/styles/style.scss
T

52 lines
796 B
SCSS
Raw Normal View History

2024-09-13 16:34:15 +08:00
$basicBlack: #000000;
$basicWhite: #ffffff;
$primaryColor: #409eff;
:root {
--basicBlack: #000000;
--basicWhite: #ffffff;
--primaryColor: #409eff;
2024-10-28 14:25:41 +08:00
--tag-bg-color: #efefef;
2024-09-13 16:34:15 +08:00
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
.list-body {
2024-09-13 16:34:15 +08:00
margin: 10px 0;
}
.dialog-form {
2024-09-13 16:34:15 +08:00
max-width: 600px;
margin: 20px auto;
}
.list-query {
.el-select {
--el-select-width: 160px;
}
.el-input {
--el-input-width: 160px;
}
}
2024-10-14 10:34:40 +08:00
2024-10-28 14:25:41 +08:00
.table-actions {
.el-button {
2024-10-14 10:34:40 +08:00
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
margin-right: 5px;
}
}
2024-10-28 14:25:41 +08:00
2024-10-18 15:01:39 +08:00
html.dark {
2026-05-18 11:09:36 +02:00
/* Custom Dark Background Color */
2024-10-18 15:01:39 +08:00
//--el-bg-color: #626aef;
2024-10-28 14:25:41 +08:00
--tag-bg-color: #24252b;
--basicBlack: #fff;
2024-10-18 15:01:39 +08:00
}