Menu mobile full height

1

I want the mobile menu to be black, with height complete.

Here is my code:

 #sidebar {
  position:fixed;

  top:0px;
  right:0px;
  width:45%;
  height:100%;
  background:#1a1a1a;
  text-align:center;
  transform-origin:right;
  transform:perspective(1200px) rotateY(90deg);
  transition:all 400ms ease;
  z-index: 2000;
  font-family:'Lora', serif;

Here is the website if you need to: link

    
asked by anonymous 22.05.2018 / 05:02

1 answer

0
 #sidebar {
  position:fixed;
  top:0px;
  right:0px;
  width:45%;
  display: block;
  height: 100%
  min-height:100%;
  background:#1a1a1a;
  text-align:center;
  transform-origin:right;
  transform:perspective(1200px) rotateY(90deg);
  transition:all 400ms ease;
  z-index: 2000;
  font-family:'Lora', serif;

If it does not work .. you need to put a fixed value for height!

    
22.05.2018 / 15:29