diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index 5e2a2b8a..49d2027a 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -147,7 +147,6 @@ body { position: relative; float: left; height: 36px; - line-height: 36px; padding-left: 8px; } .menu .hamburger { width: 36px; @@ -159,12 +158,14 @@ body { left: 0; margin: 0; padding: 0; - border: solid 1px #2a92e7; } + border: solid 1px #2a92e7; + background-color: white; + box-shadow: 0 4px 3px 0px rgba(12, 65, 108, 0.8); } .menu .menu-list li { display: block; cursor: pointer; white-space: nowrap; - padding: 5px; } + padding: 5px 15px 5px 10px; } button { cursor: pointer; } diff --git a/stylesheets/view/_conversation.scss b/stylesheets/view/_conversation.scss index d94f0f5d..3640d76b 100644 --- a/stylesheets/view/_conversation.scss +++ b/stylesheets/view/_conversation.scss @@ -37,7 +37,6 @@ body { position: relative; float: left; height: 36px; - line-height: 36px; padding-left: 8px; .hamburger { @@ -52,12 +51,14 @@ body { margin: 0; padding: 0; border: solid 1px $blue; + background-color: white; + box-shadow: 0 4px 3px 0px rgba(darken($blue, 30%), 0.8); li { display: block; cursor: pointer; white-space: nowrap; - padding: 5px; + padding: 5px 15px 5px 10px; } } }