feat: add border around mobile nav menu

This commit is contained in:
curben 2018-11-07 10:52:08 +10:30
parent 63288243d3
commit dec7a55ba5
1 changed files with 6 additions and 2 deletions

View File

@ -1130,8 +1130,12 @@ pre .javascript .function,pre .keyword {
/* display links when menu button is clicked */
/* use grid to display each link in new line */
#menu-toggle:checked + #menu{
display:grid;
display:-ms-grid
display: grid;
display: -ms-grid;
border: 2px solid #999;
border-radius: 5px;
padding: 5px;
text-align: center
}
}