diff --git a/apps/client/src/widgets/layout/StatusBar.css b/apps/client/src/widgets/layout/StatusBar.css
index 52e7962d2..e9ad2e231 100644
--- a/apps/client/src/widgets/layout/StatusBar.css
+++ b/apps/client/src/widgets/layout/StatusBar.css
@@ -254,6 +254,10 @@
}
}
+ div.similar-notes-widget div.similar-notes-wrapper {
+ max-height: unset;
+ }
+
button.select-button:not(:focus-visible) {
outline: none;
}
@@ -267,7 +271,7 @@
.status-bar-pane-title-bar {
display: flex;
padding: 6px 12px;
- background: #2d2d2d;
+ background: #272727;
justify-content: space-between;
align-items: center;
@@ -280,8 +284,14 @@
}
.status-bar-pane-content {
- background: #363636;
+ border-bottom: 1px solid var(--main-border-color);
+ background: #181818;
padding: 8px 12px;
+
+ &.status-bar-pane-scrollable {
+ max-height: 40vh;
+ overflow-y: auto;
+ }
}
}
diff --git a/apps/client/src/widgets/layout/StatusBar.tsx b/apps/client/src/widgets/layout/StatusBar.tsx
index e49e9a030..a52cc9323 100644
--- a/apps/client/src/widgets/layout/StatusBar.tsx
+++ b/apps/client/src/widgets/layout/StatusBar.tsx
@@ -271,7 +271,8 @@ function SimilarNotesPane({ note, similarNotesShown, setSimilarNotesShown }: Not