mirror of
https://github.com/FranP-code/ChatGPT.git
synced 2025-10-13 00:13:25 +00:00
74 lines
1.1 KiB
SCSS
Vendored
74 lines
1.1 KiB
SCSS
Vendored
.dashboard {
|
|
position: fixed;
|
|
width: calc(100% - 30px);
|
|
height: calc(100% - 30px);
|
|
overflow-y: auto;
|
|
padding: 15px;
|
|
|
|
&-no-data {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
font-weight: bold;
|
|
|
|
.icon {
|
|
color: #989898;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.txt {
|
|
padding: 10px;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
|
|
a {
|
|
color: #1677ff;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.dark {
|
|
background-color: #000;
|
|
}
|
|
|
|
&.has-top-dom {
|
|
padding-top: 30px;
|
|
}
|
|
|
|
&.preview {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.group-item {
|
|
margin-bottom: 20px;
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.item {
|
|
.ant-card-body {
|
|
padding: 10px;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
}
|
|
|
|
span {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
}
|