#23 Updated the colour of the send button
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m6s

This commit is contained in:
2025-03-07 21:58:40 +00:00
parent da2f2bc380
commit 5f1a1d4959
4 changed files with 13 additions and 29 deletions

View File

@ -85,16 +85,6 @@
color: var(--header);
}
.button {
color: var(--fg);
background-color: var(--accent);
transition: all 0.2s;
}
.button:hover {
box-shadow: .3em .3em .3em var(--header);
}
.container {
max-width: 90%;
margin: auto;

View File

@ -23,8 +23,9 @@
box-shadow: .25em .25em .5em var(--hover);
}
.card:hover {
.card:hover, .card:focus-within {
box-shadow: .5em .5em .5em var(--hover);
transform: scale(1.02);
}
.card .card-header :global(div) {

View File

@ -21,6 +21,7 @@
flex-wrap: wrap;
flex: 2 1;
align-items: center;
justify-content: center;
margin: 1em;
gap: 1em 3em;
}
@ -38,6 +39,16 @@
font-size: .8em;
}
.button {
background-color: var(--fg);
color: var(--bg);
transition: all 0.2s ease-in-out;
}
.button:hover {
transform: scale(1.01);
}
textarea {
min-height: 12em;
}