Skip to content

Commit df40a19

Browse files
fix: start script
1 parent d0c7b62 commit df40a19

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"@vue/cli-plugin-babel": "^3.12.0",
8080
"@vue/cli-plugin-eslint": "^3.12.0",
8181
"@vue/cli-service": "^3.12.0",
82-
"node-sass": "^6.0.0",
82+
"sass": "1.81.0",
8383
"sass-loader": "^10",
8484
"vue-template-compiler": "^2.7.14",
8585
"webpack": "^5.81.0"

src/styles/_utils.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,10 @@ $z-index-variants: (more: 1, less: -1, '10': 10, '-10': -10);
448448
.form-control:focus,
449449
.form-control:focus + .input-group-addon,
450450
&.focus .input-group-addon {
451-
@extend .input-no-border:focus;
451+
@extend .input-no-border;
452+
&:focus {
453+
border: none;
454+
}
452455
}
453456
}
454457

src/styles/_variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ $theme-colors: (
8080
$link-color: $blue;
8181

8282
$text-color: #0C2236 !default;
83+
$text-muted: map-get($theme-colors, secondary);
8384

8485
$font-weight-bold: 700 !default;
8586
$font-weight-semi-bold: 600 !default;
@@ -174,6 +175,7 @@ $nav-tabs-active-link-hover-color: $gray-700 !default;
174175
//
175176
$input-focus-border-color: #4d90fe !default; //webkit focus color
176177
$input-color: $text-color !default;
178+
$input-bg: $body-bg;
177179

178180
//* Popover */
179181
$popover-bg: #ebeff1 !default;

0 commit comments

Comments
 (0)