🐸 adds crud for libraries and deletion of elements

This commit is contained in:
alonso.torres 2020-03-19 12:54:30 +01:00
parent df75099000
commit a0a031dbc2
11 changed files with 374 additions and 88 deletions

View file

@ -20,6 +20,19 @@
}
}
.library-content-empty {
display: flex;
flex-direction: column;
}
.library-content-empty-text {
color: #7C7C7C;
border: 1px dashed #AFB2BF;
text-align: center;
padding: 5rem;
margin: 2rem;
}
.library-page #main-bar {
position: relative;
}
@ -79,16 +92,13 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
& a {
color: $color-black;
}
color: $color-black;
&:hover {
background-color: $color-primary-lighter;
}
&.current a {
&.current {
font-weight: bold;
}
}
@ -145,6 +155,12 @@
}
}
.library-top-menu-actions-delete {
display: flex;
justify-content: center;
flex-direction: column
}
.library-page-cards-container {
align-content: flex-start;
display: flex;
@ -335,3 +351,4 @@
font-size: 24px;
font-weight: normal;
}