fix: update style (#559)

diff --git a/src/views/components/common/common-selector.vue b/src/views/components/common/common-selector.vue
index a998197..e5036e1 100644
--- a/src/views/components/common/common-selector.vue
+++ b/src/views/components/common/common-selector.vue
@@ -124,7 +124,7 @@
   }
   .rk-common-sel {
     position: absolute;
-    top: 45px;
+    top: 52px;
     box-shadow: 0 1px 6px rgba(99, 99, 99, 0.2);
     background-color: #252a2f;
     width: 100%;
diff --git a/src/views/components/log/log-bar.vue b/src/views/components/log/log-bar.vue
index 55e4ea2..b3d3a0a 100644
--- a/src/views/components/log/log-bar.vue
+++ b/src/views/components/log/log-bar.vue
@@ -14,7 +14,7 @@
 <template>
   <div class="rk-log-nav">
     <div class="rk-error-log-bar flex-h">
-      <div class="flex-h">
+      <div class="flex-h bar-selectors">
         <CommonSelector
           :hasSearch="true"
           :title="$t('logCategory')"
@@ -237,6 +237,9 @@
     height: 52px;
     justify-content: space-between;
   }
+  .bar-selectors {
+    height: 100%;
+  }
 
   .rk-right {
     min-width: 210px;
diff --git a/src/views/components/log/log-detail-content.vue b/src/views/components/log/log-detail-content.vue
index c56c834..14dd90d 100644
--- a/src/views/components/log/log-detail-content.vue
+++ b/src/views/components/log/log-detail-content.vue
@@ -54,10 +54,12 @@
 </script>
 <style lang="scss" scoped>
   .content {
-    max-width: 1000px;
-    min-height: 200px;
+    max-width: 700px;
+    min-width: 500px;
+    min-height: 500px;
     border: none;
     outline: none;
     color: #3d444f;
+    overflow: auto;
   }
 </style>