mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-14 18:35:21 +01:00
30 lines
466 B
CSS
30 lines
466 B
CSS
.attachmentsList:empty {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.attachmentsList:empty::before {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
content: "No data";
|
|
font-weight: bolder;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0.8;
|
|
min-height: 3rem;
|
|
}
|
|
|
|
.attachmentListItem {
|
|
padding: 10px;
|
|
}
|
|
|
|
.attachmentListItemSize {
|
|
min-width: 4em;
|
|
text-align: right;
|
|
}
|
|
|
|
.attachmentListItemCreated {
|
|
text-align: right;
|
|
}
|