mirror of
https://github.com/bramses/bramses-highly-opinionated-vault-2023.git
synced 2025-02-26 07:53:55 +00:00
33 lines
519 B
CSS
33 lines
519 B
CSS
.recent-files-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.recent-files-title-content {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.recent-files-file-delete {
|
|
display: none;
|
|
color: var(--nav-item-color);
|
|
height: 17px;
|
|
}
|
|
|
|
.recent-files-title:hover .recent-files-file-delete {
|
|
display: block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.recent-files-file-delete:hover {
|
|
color: var(--nav-item-color-hover);
|
|
}
|
|
|
|
.recent-files-donation {
|
|
width: 70%;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.recent-files-donate-button {
|
|
margin: 10px;
|
|
} |