Skip to content

Commit cce3288

Browse files
authored
Merge pull request #100 from GlobalHive/development
fix: Fixed wrong button text color
2 parents 113d535 + 4693eac commit cce3288

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

docs/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default defineConfig({
1919
nav: [
2020
{ text: 'Guide', link: '/guide/what-is-vuejs-tour' },
2121
{
22-
text: '2.4.2',
22+
text: '2.4.3',
2323
items: [
2424
{
2525
text: 'Changelog',

src/components/VTour.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,7 @@ defineExpose<VTourExposedMethods>({
426426
background: white;
427427
cursor: pointer;
428428
transition: all 0.2s ease;
429+
color: #000;
429430
}
430431
431432
.vjt-btn:hover {

src/style/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $vjt__highlight_outline_radius: 1px !default;
1111
$vjt__highlight_outline: 2px solid $vjt__highlight_color !default;
1212
$vjt__action_button_color: #fff !default;
1313
$vjt__action_button_font_size: 13px !default;
14-
$vjt__action_button_color_hover: #fff !default;
14+
$vjt__action_button_color_hover: #000 !default;
1515
$vjt__action_button_padding: 4px 16px !default;
1616
$vjt__action_button_border_radius: 4px !default;
1717
$vjt__action_button_background_hover: #000 !default;

0 commit comments

Comments
 (0)