Skip to content

Commit

Permalink
fix: Button padding and font-sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
pixdev committed May 6, 2024
1 parent 98a732b commit ad505c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/styles/components/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.8em;
}

.navbar__linksWrapper > a {
color: var(--primary-text);
text-decoration: none;
font-size: 0.8em;
padding: 0 1em;
height: 100%;
}
Expand Down
4 changes: 2 additions & 2 deletions src/styles/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ h1, h2, h3, h4, h5, h6 {

button {
border: 0;
padding: 0.4em 0.7em;
padding: 0.4em 0.8em;
font-weight: normal;
border-radius: var(--border-radius-second);
margin: 0;
Expand All @@ -44,7 +44,7 @@ button {
--border-radius-second: 5px;
}

@media screen and (max-width 660px) {
@media screen and (max-width: 660px) {
html, body, #root {
overscroll-behavior: none;
}
Expand Down

0 comments on commit ad505c3

Please sign in to comment.