Skip to content

Commit

Permalink
Fix: Expand media query breakpoint for better responsiveness.
Browse files Browse the repository at this point in the history
The media query max-width has been increased from 400px to 600px to improve the layout on a broader range of smaller displays. This change helps provide a more consistent visual experience across different device sizes.

Signed-off-by: Christian Roessner <c@roessner.co>
  • Loading branch information
Christian Roessner committed Dec 2, 2024
1 parent 6d61dbc commit b084298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion static/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ input[type=text].totp-digit {
* Media adjustments for smaller display sizes
*/

@media (max-width: 400px) {
@media (max-width: 600px) {
.logo {
width: 150px;
}
Expand Down

0 comments on commit b084298

Please sign in to comment.