Skip to content

Commit

Permalink
Update font size in main.css
Browse files Browse the repository at this point in the history
Adjust font size in main.css to improve readability and consistency
across different screen sizes.
  • Loading branch information
joone committed Mar 24, 2024
1 parent c4eee3c commit d1be1bc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/assets/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@
html {
color: #232333;
font-family: 'Roboto Mono', monospace;
font-size: 17px;
font-size: 15px;
line-height: 1.6em;
}

@media screen and (min-width: 1100px) {
html {
font-size: 17px;
}
}

body{
display: block;
margin: 8px;
Expand Down

0 comments on commit d1be1bc

Please sign in to comment.