Compare commits

...

4 Commits

Author SHA1 Message Date
c7b9374169 2.0.22 2022-05-01 20:07:30 +02:00
dfe189ff1c fix(core): update 2022-05-01 20:07:29 +02:00
b777508b7a 2.0.21 2022-05-01 19:24:16 +02:00
52664d8ea1 fix(core): update 2022-05-01 19:24:16 +02:00
4 changed files with 6 additions and 18 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@designestate/dees-domtools",
"version": "2.0.20",
"version": "2.0.22",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@designestate/dees-domtools",
"version": "2.0.20",
"version": "2.0.22",
"license": "MIT",
"dependencies": {
"@apiglobal/typedrequest": "^2.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "2.0.20",
"version": "2.0.22",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-domtools',
version: '2.0.20',
version: '2.0.22',
description: 'tools to simplify complex css structures'
}

View File

@ -12,20 +12,8 @@ export const scrollBarStyles: string = (() => {
::-webkit-scrollbar {
width: 0px;
}
/* Track */
::-webkit-scrollbar-track {
background: #111;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #666;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #777;
body {
scrollbar-width: none;
}
`.cssText;
return returnStyles;