|
|
@ -120,9 +120,9 @@ export class Header extends HTMLElement { |
|
|
div.menu { |
|
|
div.menu { |
|
|
position: fixed; |
|
|
position: fixed; |
|
|
top: 0; |
|
|
top: 0; |
|
|
left: -90vw; |
|
|
left: max(-90vw, -480px); |
|
|
height: 100vh; |
|
|
height: 100vh; |
|
|
width: 90vw; |
|
|
width: min(90vw, 480px); |
|
|
background-color: #fff; |
|
|
background-color: #fff; |
|
|
transition: left .25s ease-in-out; |
|
|
transition: left .25s ease-in-out; |
|
|
} |
|
|
} |
|
|
|