Skip to content

Commit

Permalink
fix some things for #11, mainly transitions and headings
Browse files Browse the repository at this point in the history
  • Loading branch information
ModischFabrications committed Apr 14, 2020
1 parent fe225bc commit e3eb20b
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/components/SolverInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
small
sort-by="quantity"
sort-desc
tbody-tr-class="excel_row"
thead-tr-class="header"
tbody-tr-class="table_row"
thead-tr-class="table_headings"
>
<template v-slot:head(delete)>
<b-button
Expand Down Expand Up @@ -207,21 +207,22 @@
.solver_input {
padding: 16px;
}
</style>

.header thead tr th thead text {
/* TODO: set size so that it actually works */
font-size: larger !important;
background: red;
<style>
.table_headings th {
font-size: larger;
vertical-align: middle !important;
}
.excel_row td input {
.table_row td input {
background-color: #0000;
border: none;
border-radius: 0;
}
table#table-input .flip-list-move {
/* TODO fix transition: https://bootstrap-vue.js.org/docs/components/table/#table-body-transition-support */
transition: transform 1s;
transition: transform 0.5s;
}
</style>

0 comments on commit e3eb20b

Please sign in to comment.