Fies overflow-x problem on themes list. Adds light animation to item appear.

This commit is contained in:
mateuswetah 2018-08-03 07:56:19 -03:00
parent fbd8d8b3a1
commit cd0bdd5c7b
5 changed files with 24 additions and 1 deletions

View File

@ -9,10 +9,13 @@
width: 100%;
height: calc(100% - 40px);
border-collapse: separate;
overflow: auto;
overflow-x: auto;
overflow-y: hidden;
margin-bottom: 0px !important;
table.tainacan-table {
animation-name: appear;
animation-duration: 0.5s;
width: 100%;
border-collapse: separate;
border-spacing: 0;

View File

@ -224,4 +224,18 @@ $modal-z: 9999999;
animation-duration: 0.2s;
animation-timing-function: ease-in;
}
}
// Animations for Item Appear in Items List
@keyframes item-appear {
from {
opacity: 0;
visibility: hidden;
transform: translate(0, 12px);
}
to {
opacity: 1;
visibility: visible;
transform: translate(0, 0px);
}
}

View File

@ -15,6 +15,8 @@
}
.tainacan-card {
animation-name: item-appear;
animation-duration: 0.5s;
padding: 0px;
flex-basis: 0;
margin: 0.75rem;

View File

@ -12,6 +12,8 @@
}
.tainacan-grid-item {
animation-name: item-appear;
animation-duration: 0.5s;
max-width: 258px;
flex-basis: 0;
margin: 1rem 1.5rem 1.5rem 1.5rem;

View File

@ -15,6 +15,8 @@
}
.tainacan-record {
animation-name: item-appear;
animation-duration: 0.5s;
padding: 0px;
flex-basis: 0;
margin: 0.75rem;