minor style changes and fix 4

This commit is contained in:
Pagwin 2025-09-02 16:22:20 -04:00
parent 721cff0a1a
commit 4d03d4e3c0
2 changed files with 6 additions and 2 deletions

View file

@ -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>

View file

@ -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();
});
}