Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(translate): Auto Translate Received Messages #2618

Open
wants to merge 8 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
Use class instead of inline style
  • Loading branch information
MrDiamondDog committed Mar 2, 2024
commit 9f7e27d5c92b6dc459101674cf31089e25c49d7a
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function SettingSliderComponent({ option, pluginSettings, definedSettings
stickToMarkers={option.stickToMarkers ?? true}
{...option.componentProps}
/>
<Forms.FormText style={{ color: "var(--text-muted)" }}>{option.description}</Forms.FormText>
<Forms.FormText className="vc-plugins-setting-footer">{option.description}</Forms.FormText>
</Forms.FormSection>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/PluginSettings/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@
margin-top: 0.5em;
}

.vc-plugins-info-button svg:not(:hover, :focus) {
.vc-plugins-info-button svg:not(:hover, :focus), .vc-plugins-setting-footer {
color: var(--text-muted);
}
Loading