init crater

This commit is contained in:
Mohit Panjwani
2019-11-11 12:16:00 +05:30
commit bdf2ba51d6
668 changed files with 158503 additions and 0 deletions

View File

@ -0,0 +1,72 @@
// Expenses
// -------------------------
.expenses {
.header-button-container {
// display: block;
}
.collapse-button-container {
display: none;
.collapse-button {
width: 100%;
display: flex;
justify-content: center;
}
}
.notes {
overflow: hidden;
width: 200px;
.note {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
}
@media(max-width: $x-small-breakpoint ) {
.expenses {
.page-actions {
position: relative;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
display: flex;
flex-wrap: wrap;
button {
margin-bottom: 10px;
}
}
.page-header {
margin-bottom: 5px;
}
.table-actions {
margin-top: 0px !important;
}
.header-button-container {
display: none;
}
.collapse-button-container {
margin-top: 8px;
display: block;
}
}
}