0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-06 14:28:30 -05:00
penpot/frontend/resources/styles/main/layouts/recent-files-page.scss

48 lines
786 B
SCSS
Raw Normal View History

.recent-files-page {
overflow: scroll;
height: 100%;
}
.recent-files-row {
padding: 1rem;
border-top: 1px solid $color-gray-10;
&:hover {
2020-03-30 13:15:31 +02:00
background-color: $color-white;
.grid-item.project-th {
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}
}
&.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
}