mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
Use max-width over max-device-width (#3132)
Using max-width because this applies the mobile styles to narrow windows on larger devices as well as full with windows on narrow devices.
This commit is contained in:
parent
54db12c4d9
commit
b1685ce010
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ header h1 {
|
|||
margin: 8px 0;
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width: 480px) {
|
||||
@media only screen and (max-width: 480px) {
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue