0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-28 17:39:26 -05:00
penpot/frontend/resources/styles/main/layouts/recent-files-page.scss
alonso.torres 71e30a1607 Fixes styles
2020-04-29 10:04:27 +02:00

41 lines
688 B
SCSS

.recent-files-page {
overflow: scroll;
height: 100%;
background-color: $color-white;
}
.recent-files-row {
padding: 1rem;
border-top: 1px solid $color-gray-10;
&.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 {
color: $color-gray-30
}
.recent-files-empty {
margin: 30px;
font-size: 20px
}