From 67d79743fe8759e3b402ebfc7de02c394a9cfe01 Mon Sep 17 00:00:00 2001 From: Bat <baptiste@gelez.xyz> Date: Sat, 17 Mar 2018 12:59:50 +0100 Subject: [PATCH] Make search wider --- front/src/components/Sidebar.vue | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue index 28022c63..3980ab7d 100644 --- a/front/src/components/Sidebar.vue +++ b/front/src/components/Sidebar.vue @@ -182,7 +182,7 @@ $sidebar-color: #1B1C1D; .menu-area { .menu .item:not(.active):not(:hover) { - background-color: rgba(255, 255, 255, 0.15); + opacity: 0.75; } .menu .item { @@ -225,14 +225,27 @@ $sidebar-color: #1B1C1D; .logo { cursor: pointer; display: inline-block; + margin: 0px; } .ui.search { - display: block; + display: flex; .collapse.button { margin-right: 0.5rem; margin-top: 0.5rem; float: right; } } + +</style> + +<style lang="scss"> +.sidebar { + .ui.search .input { + flex: 1; + .prompt { + border-radius: 0; + } + } +} </style> -- GitLab