Moved search button out of the form to avoid adding unnecessary input parameters
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Gregory Ballantine
2024-05-21 10:03:47 -04:00
parent f4850c33ea
commit ce63940635
2 changed files with 19 additions and 17 deletions

View File

@ -89,21 +89,21 @@ input[type="submit"].button-primary{
display: inline-block;
width: 256px;
}
}
button{
display: inline-block;
padding: 0 10px;
background: $primary-color;
border: 1px solid white;
color: white;
font-size: 1.5rem;
font-weight: bold;
transition: all 200ms ease-in-out;
#search-button{
display: inline-block;
padding: 0 10px;
background: $primary-color;
border: 1px solid white;
color: white;
font-size: 1.5rem;
font-weight: bold;
transition: all 200ms ease-in-out;
&:hover{
background: $primary-color-highlight;
color: #eee;
}
&:hover{
background: $primary-color-highlight;
color: #eee;
}
}
}