Skip to content

Commit 3b58120

Browse files
committed
fix dark mode widget view
1 parent 08bb67e commit 3b58120

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.interactive {
2-
-webkit-transition: 0.2s ease-out;
3-
-moz-transition: 0.2s ease-out;
4-
-o-transition: 0.2s ease-out;
5-
transition: 0.2s ease-out;
2+
-webkit-transition: 0.1s ease-out;
3+
-moz-transition: 0.1s ease-out;
4+
-o-transition: 0.1s ease-out;
5+
transition: 0.1s ease-out;
66
}
77
.widget-container {
88
padding: 15px;
9-
background-color: #fcfcfc;
9+
background-color: var(--color-code-background);
1010
min-height: 75px;
1111
}
1212
.center-content {
@@ -21,16 +21,16 @@
2121
text-decoration: none;
2222
background: #3980b9;
2323
border: 2px solid #3980b9 !important;
24-
transition: all 0.2s ease 0s;
25-
box-shadow: 0 5px 10px grey;
24+
transition: all 0.1s ease 0s;
25+
box-shadow: 0 5px 10px var(--color-foreground-border);
2626
}
2727
.enable-widget-button:hover {
2828
color: #3980b9 !important;
2929
background: #ffffff;
30-
transition: all 0.2s ease 0s;
30+
transition: all 0.1s ease 0s;
3131
}
3232
.enable-widget-button:focus {
3333
outline: 0 !important;
3434
transform: scale(0.98);
35-
transition: all 0.2s ease 0s;
35+
transition: all 0.1s ease 0s;
3636
}

0 commit comments

Comments
 (0)