minor style changes and fix 4
This commit is contained in:
parent
721cff0a1a
commit
4d03d4e3c0
2 changed files with 6 additions and 2 deletions
|
@ -36,13 +36,16 @@
|
|||
}
|
||||
}
|
||||
|
||||
button {
|
||||
input {
|
||||
transition-duration: 0.05s;
|
||||
transition-property: outline;
|
||||
transition-delay: 0s;
|
||||
|
||||
margin: 10px;
|
||||
width: revert;
|
||||
}
|
||||
|
||||
button:active {
|
||||
input:active {
|
||||
outline: turquoise 5px solid;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -49,6 +49,7 @@ function IDB_cond_create(db, objectStoreName, opts={}){
|
|||
return new Promise((res)=>{
|
||||
if(!db.objectStoreNames.contains(objectStoreName)){
|
||||
db.createObjectStore(objectStoreName, opts);
|
||||
}
|
||||
res();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue