mirror of
https://github.com/penpot/penpot.git
synced 2025-08-03 05:08:23 +02:00
🕐 adds recent opened files screen
This commit is contained in:
parent
1ffca33be9
commit
561560ae04
20 changed files with 437 additions and 250 deletions
|
@ -0,0 +1,3 @@
|
|||
.projects-page {
|
||||
padding: 1rem;
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
.recent-files-page {
|
||||
overflow: scroll;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.recent-files-row {
|
||||
padding: 1rem;
|
||||
border-top: 1px solid $color-gray-10;
|
||||
|
||||
&:hover {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
&.first {
|
||||
border-top: none;
|
||||
}
|
||||
}
|
||||
|
||||
.recent-files-row-title {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-left: $medium;
|
||||
margin-top: $medium;
|
||||
}
|
||||
|
||||
.recent-files-row-title-name, .recent-files-row-title-info {
|
||||
font-size: 15px;
|
||||
line-height: 1rem;
|
||||
font-weight: unset;
|
||||
}
|
||||
|
||||
.recent-files-row-title-name {
|
||||
color: black;
|
||||
margin-right: $medium;
|
||||
}
|
||||
|
||||
.recent-files-row-title-info {
|
||||
}
|
||||
|
||||
.recent-files-empty {
|
||||
margin: 30px;
|
||||
font-size: 20px
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue