blob: 74a5055f1d365a84026f6f719c58f2ba2407f7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
.recent-files-title {
justify-content: space-between;
align-items: unset;
}
.recent-files-title-content {
flex-grow: 1;
}
.recent-files-file-delete {
display: none;
}
.recent-files-title:hover .recent-files-file-delete {
display: flex;
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;
}
|