diff --git a/openbis_ng_ui/src/js/components/common/browser/BrowserNode.jsx b/openbis_ng_ui/src/js/components/common/browser/BrowserNode.jsx
index db6430ab51d45d84f1a40186ab523a6391032484..9bafbf87fef2accb92740cf505df050b545233da 100644
--- a/openbis_ng_ui/src/js/components/common/browser/BrowserNode.jsx
+++ b/openbis_ng_ui/src/js/components/common/browser/BrowserNode.jsx
@@ -13,15 +13,16 @@ import BrowserNodes from './BrowserNodes.jsx'
 
 const styles = theme => ({
   item: {
-    padding: '4px 0px'
+    paddingTop: theme.spacing(1),
+    paddingBottom: theme.spacing(1)
   },
   icon: {
-    marginLeft: '8px',
-    marginRight: '6px',
+    margin: '-2px 4px -2px 8px',
     minWidth: '24px'
   },
   text: {
-    fontSize: theme.typography.body2.fontSize
+    fontSize: theme.typography.body2.fontSize,
+    lineHeight: theme.typography.body2.fontSize
   }
 })
 
diff --git a/openbis_ng_ui/src/js/components/common/content/ContentTabs.jsx b/openbis_ng_ui/src/js/components/common/content/ContentTabs.jsx
index 5149bc29b63b311b8210adde754b9a6ac141874a..745fb6b05c89e3de6bd2dc8b6015d323d7af1073 100644
--- a/openbis_ng_ui/src/js/components/common/content/ContentTabs.jsx
+++ b/openbis_ng_ui/src/js/components/common/content/ContentTabs.jsx
@@ -11,11 +11,11 @@ const styles = theme => ({
     borderBottomStyle: 'solid',
     borderBottomWidth: '1px',
     borderBottomColor: theme.palette.background.secondary,
-    minHeight: '36px'
+    minHeight: '38px'
   },
   tabRoot: {
     textTransform: 'none',
-    minHeight: '36px'
+    minHeight: '38px'
   },
   iconRoot: {
     marginLeft: '6px'
diff --git a/openbis_ng_ui/src/js/components/common/form/FilterField.jsx b/openbis_ng_ui/src/js/components/common/form/FilterField.jsx
index da16f4fc28558c399ed3b8026d2187e53e33edca..c8600b7d64d34d78f4e2fd3e336e9577a6fc560f 100644
--- a/openbis_ng_ui/src/js/components/common/form/FilterField.jsx
+++ b/openbis_ng_ui/src/js/components/common/form/FilterField.jsx
@@ -13,7 +13,7 @@ const styles = theme => ({
   },
   input: {
     fontSize: theme.typography.body2.fontSize,
-    height: '24px'
+    height: '26px'
   },
   adornment: {
     margin: '8px',