Agregados headers a las entitylist

This commit is contained in:
Daniel Cortes
2020-06-16 23:12:49 -04:00
parent f08c108eee
commit cb43e39aca
6 changed files with 77 additions and 53 deletions

View File

@@ -1,5 +1,11 @@
// Base
.entity-list {
.entity-header{
font-size: 1.2em;
font-weight: 500;
border-bottom: solid var(--line-width) var(--accent);
}
.entity-item {
a {
text-decoration: none;
@@ -29,29 +35,31 @@
// Column mode
.entity-list.column {
.entity-item .entity-container {
display: flex;
justify-content: space-between;
a {
.entity-item{
margin-bottom: 1em;
.entity-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 1em 1em;
flex-grow: 2;
.body {
a {
display: flex;
flex-direction: column;
}
}
flex-direction: row;
align-items: center;
.widget {
display: flex;
align-items: center;
padding-right: 1em;
padding: 1em 1em;
flex-grow: 2;
.body {
display: flex;
flex-direction: column;
}
}
.widget {
display: flex;
align-items: center;
padding-right: 1em;
}
}
}
}