Skip to content

Commit

Permalink
Button styling fix in collprofiles.php (#1535)
Browse files Browse the repository at this point in the history
* fixed the font styling

* change the primary button font color to white

* unify all buttons styling with body-font-family variable
  • Loading branch information
NikitaSalikov authored Aug 7, 2024
1 parent 21373d8 commit 3148dc6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions css/symbiota/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ button {
padding-block: 1px;
padding-inline: 6px;
color: #fff;
font-family: var(--heading-font-family);
font-family: var(--body-font-family);
font-weight: 600;
letter-spacing: 1px;
word-spacing: normal;
Expand Down Expand Up @@ -380,7 +380,7 @@ button.inverse-color {
border: none;
border-radius: 5px;
padding: 0.5rem 1rem;
font-family: var(--heading-font-family);
font-family: var(--body-font-family);
letter-spacing: 1px;
text-align: center;
cursor: pointer;
Expand Down Expand Up @@ -422,11 +422,12 @@ button.inverse-color {

.button-primary:hover > a,
.button-secondary:hover > a {
color: var(--light-color);
color: #fff;
}

.button-primary > a {
color: var(--light-color);
color: #fff;
font-family: var(--body-font-family);
}

.button-secondary {
Expand Down

0 comments on commit 3148dc6

Please sign in to comment.