fix(): Misc UI formatting fixes

* Fixes footer CSS
* Increase URL timeout
This commit is contained in:
Elia el Lazkani 2025-01-02 16:02:29 +01:00
parent 1887be54e5
commit cf3131d09d
2 changed files with 5 additions and 2 deletions

View file

@ -49,7 +49,7 @@ export default function URLShortener() {
setTimeout(() => { setTimeout(() => {
setShowInput(false); setShowInput(false);
}, 10000); }, 900000);
} catch (error) { } catch (error) {
console.log(error); console.log(error);
} }

View file

@ -1,5 +1,8 @@
.footer { .footer {
width: 100%; width: 100%;
height: 200px; height: 100px;
background-color: var(--color-secondary); background-color: var(--color-secondary);
display: flex;
justify-content: center;
align-items: center;
} }