Skip to content

Commit 48f1a52

Browse files
committed
removing the border on the close dialog box and updating the "x" to adapt to dark/light theme
1 parent fe7fd67 commit 48f1a52

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/app/component/circular-heatmap/circular-heatmap.component.css

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,26 @@
7171
}
7272

7373
.overlay-close {
74-
border: black solid 1px;
74+
border: none;
7575
background-color: rgba(0, 0, 0, 0);
76-
color: black;
7776
grid-column: 2/3;
7877
grid-row: 1/4;
7978
display: grid;
8079
justify-content: center;
8180
align-items: start;
8281
margin-left: auto;
8382
}
83+
84+
/* overlay-close - light theme */
85+
:host-context(body.light-theme) .overlay-close {
86+
color: black;
87+
}
88+
89+
/* overlay-close - dark theme */
90+
:host-context(body.dark-theme) .overlay-close {
91+
color: white;
92+
}
93+
8494
.team-filter {
8595
padding: 0.4rem;
8696
grid-column: 2/3;

0 commit comments

Comments
 (0)