Skip to content

Commit

Permalink
Merge pull request #28 from squidit/feature/SQ-62773-problema-no-scroll
Browse files Browse the repository at this point in the history
feature/SQ-62773-problema-no-scroll
  • Loading branch information
JonasPeres committed Feb 29, 2024
2 parents c4bc1ac + d0a5872 commit 585b734
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dist/css/squid-components.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid-components.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid-minor.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid-minor.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid.css
Original file line number Diff line number Diff line change
Expand Up @@ -10371,7 +10371,7 @@ body, html {

body.block {
overflow: hidden;
padding-right: 0.5rem;
padding-right: 7px;
}

p,
Expand Down
2 changes: 1 addition & 1 deletion dist/css/squid.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squidit/css",
"version": "2.0.27",
"version": "2.0.28",
"scripts": {
"prepare": "npm install -g husky eslint sass gulp uglify-js && husky install",
"start": "gulp watch",
Expand Down
2 changes: 1 addition & 1 deletion src/docs/public/css/squid.css
Original file line number Diff line number Diff line change
Expand Up @@ -10371,7 +10371,7 @@ body, html {

body.block {
overflow: hidden;
padding-right: 0.5rem;
padding-right: 7px;
}

p,
Expand Down
2 changes: 1 addition & 1 deletion src/docs/public/css/squid.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/docs/public/css/squid.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/scss/general/_defaults.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ body, html {
body {
&.block {
overflow: hidden;
padding-right: calc(1rem / 2);
padding-right: $scrollWidth;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/scss/helpers/_scrollbar.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.scrollbar {
&::-webkit-scrollbar {
width: 7px;
width: $scrollWidth;
height: 7px;
}
&::-webkit-scrollbar-track {
Expand Down
3 changes: 3 additions & 0 deletions src/scss/squid-base.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
@charset 'UTF-8';

$transition: all 0.3s ease;
$scrollWidth: 7px;

@import 'external/animate';
@import 'helpers/breakpoints';
@import 'helpers/animations';
Expand Down

0 comments on commit 585b734

Please sign in to comment.