Skip to content

Commit d8709b4

Browse files
authored
Merge pull request #19 from flatlogic/debug-scripts
Debug scripts
2 parents d0c7b62 + 74b16b5 commit d8709b4

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [v5.5.7] - 22/11/2024
4+
5+
- Fixed dev mode errors
6+
37
## [v5.5.6] - 03/05/2023
48

59
### Fix dependencies errors

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sing-app-vue",
3-
"version": "5.5.6",
3+
"version": "5.5.7",
44
"private": true,
55
"scripts": {
66
"start": "vue-cli-service serve --port 3000",
@@ -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

+4-1
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

+2
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)