We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92dd160 commit 85b834eCopy full SHA for 85b834e
client/styles/components/_console.scss
@@ -88,16 +88,25 @@
88
@include themify() {
89
@extend %link;
90
color: getThemifyVariable('secondary-text-color');
91
- &:hover {
92
- color: getThemifyVariable('heavy-text-color');
93
- }
+
94
}
95
background: transparent;
96
border: none;
97
padding-right: #{math.div(10, $base-font-size)}rem;
98
.preview-console--collapsed & {
99
display: none;
100
+ transition: background-color 0.3s ease,
+ color 0.3s ease,
101
+ box-shadow 0.3s ease,
102
+ transform 0.3s ease,
103
+ border-color 0.3s ease;
104
+}
105
+.light .preview-console__clear:hover {
106
+ background: #ed225d;
107
+ color: white;
108
+ border-radius: 2px;
109
+ transform: scale(1.1) translateY(-2px);
110
111
112
.preview-console__body {
0 commit comments