Skip to content

Commit fe6c98e

Browse files
committed
fix command results rounding
1 parent e0e8f0a commit fe6c98e

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

redisinsight/ui/src/pages/vector-search/components/commands-view/CommandsView/styles.module.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.wrapper {
22
flex: 1;
3-
height: 100%;
3+
height: calc(100% - var(--border-radius-medium));
44
width: 100%;
55
background-color: var(--euiColorEmptyShade);
66
border: 1px solid var(--euiColorLightShade);
7+
border-radius: var(--border-radius-medium);
78

89
display: flex;
910
flex-direction: column;

redisinsight/ui/src/pages/workbench/components/wb-results/WBResults/styles.module.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.wrapper {
22
flex: 1;
3-
height: 100%;
3+
height: calc(100% - var(--border-radius-medium));
44
width: 100%;
55
background-color: var(--euiColorEmptyShade);
66
border: 1px solid var(--euiColorLightShade);
7+
border-radius: var(--border-radius-medium);
78

89
display: flex;
910
flex-direction: column;

redisinsight/ui/src/pages/workbench/components/wb-view/WBView/styles.module.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@
1919
width: 100%;
2020
}
2121

22-
.queryResults {
23-
& > div {
24-
border-bottom-width: 0;
25-
}
26-
}
27-
2822
:global(.show-cli) {
2923
.queryResults {
3024
& > div {

0 commit comments

Comments
 (0)