updated password input UI
This commit is contained in:
parent
8d41111cd6
commit
346e604f34
37 changed files with 282 additions and 288 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
.fileList__header {
|
||||
font-size: 16px;
|
||||
color: #858585;
|
||||
color: var(--lightTextColor);
|
||||
font-weight: lighter;
|
||||
text-align: left;
|
||||
background: rgba(0, 148, 251, 0.05);
|
||||
|
|
|
@ -2,9 +2,8 @@ const html = require('choo/html');
|
|||
const file = require('../file');
|
||||
|
||||
module.exports = function(state, emit) {
|
||||
let table = '';
|
||||
if (state.storage.files.length) {
|
||||
table = html`
|
||||
return html`
|
||||
<table class="fileList">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -31,5 +30,4 @@ module.exports = function(state, emit) {
|
|||
</table>
|
||||
`;
|
||||
}
|
||||
return table;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue