Skip to content

Commit a515819

Browse files
explicit background specification to avoid bleed
1 parent c81d24f commit a515819

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

src/components/viewer/ComponentViewer.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
--rcv-selected-background-color: #313149;
1111
--rcv-attention-text-color: #e38a59;
1212
--rcv-drop-down-width: 200px;
13+
--rcv-registry-selection-background-color: #fff;
14+
--rcv-filter-background-color: #fff;
15+
--rcv-preview-background-color: #fff;
1316
}
1417

1518
body {
@@ -49,6 +52,7 @@ body {
4952
font-family: var(--rcv-font-family);
5053

5154
border-bottom: 1px var(--rcv-secondary-border-color) solid;
55+
background-color: var(--rcv-registry-selection-background-color);
5256
}
5357

5458
.rcv-search-box {
@@ -65,6 +69,8 @@ body {
6569
height: 34px;
6670
box-sizing: border-box;
6771

72+
background-color: var(--rcv-filter-background-color);
73+
6874
padding: 10px 4px 10px 15px;
6975
margin: 0;
7076

@@ -86,8 +92,9 @@ body {
8692

8793
.rcv-preview {
8894
grid-area: preview;
89-
margin: 10px 10px 10px 20px;
95+
background-color: var(--rcv-preview-background-color);
9096

97+
padding: 10px 10px 10px 20px;
9198
overflow: auto;
9299
}
93100

src/components/viewer/RegistrySelection.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
display: flex;
33
align-items: center;
44
height: 100%;
5+
background-color: var(--rcv-registry-selection-background-color);
56
}
67

78
.rcv-registry-selection-tab {

0 commit comments

Comments
 (0)