@hazae41/labase 1.0.14 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,22 +1,14 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@hazae41/labase",
4
- "version": "1.0.14",
4
+ "version": "1.0.16",
5
5
  "description": "The Tailwind framework for monochrome apps",
6
- "homepage": "https://github.com/hazae41/labase",
7
6
  "repository": "github:hazae41/labase",
8
7
  "author": "hazae41",
9
8
  "license": "MIT",
10
- "main": "./dist/cjs/index.cjs",
11
- "module": "./dist/esm/index.mjs",
12
- "types": "./dist/types/index.d.ts",
13
- "sideEffects": false,
14
9
  "files": [
15
10
  "./src"
16
11
  ],
17
- "exports": {
18
- ".": {}
19
- },
20
12
  "keywords": [
21
13
  "monochrome",
22
14
  "css",
@@ -24,5 +16,8 @@
24
16
  "tailwind",
25
17
  "design",
26
18
  "style"
27
- ]
19
+ ],
20
+ "dependencies": {
21
+ "tailwindcss": "^4.1.16"
22
+ }
28
23
  }
package/src/index.css CHANGED
@@ -1,4 +1,4 @@
1
- @import "tailwindcss";
1
+ @import "tailwindcss/index";
2
2
 
3
3
  @import "./padding/index.css";
4
4
  @import "./margin/index.css";
@@ -4,15 +4,15 @@
4
4
  }
5
5
 
6
6
  &::-webkit-scrollbar {
7
- @apply bg-white;
7
+ @apply bg-transparent;
8
8
  }
9
9
 
10
10
  &::-webkit-scrollbar-thumb {
11
- @apply bg-black/10 rounded-[10px] border-[3px] border-solid border-white;
11
+ @apply bg-black/10 rounded-[10px] border-[3px] border-solid border-transparent bg-clip-padding;
12
12
  }
13
13
 
14
14
  &::-webkit-scrollbar-thumb:hover {
15
- @apply bg-black/20 rounded-[10px] border-[3px] border-solid border-white;
15
+ @apply bg-black/20 rounded-[10px] border-[3px] border-solid border-transparent bg-clip-padding;
16
16
  }
17
17
  }
18
18
 
@@ -22,15 +22,15 @@
22
22
  }
23
23
 
24
24
  &::-webkit-scrollbar {
25
- @apply bg-black;
25
+ @apply bg-transparent;
26
26
  }
27
27
 
28
28
  &::-webkit-scrollbar-thumb {
29
- @apply bg-white/10 rounded-[10px] border-[3px] border-solid border-black;
29
+ @apply bg-white/10 rounded-[10px] border-[3px] border-solid border-transparent bg-clip-padding;
30
30
  }
31
31
 
32
32
  &::-webkit-scrollbar-thumb:hover {
33
- @apply bg-white/20 rounded-[10px] border-[3px] border-solid border-black;
33
+ @apply bg-white/20 rounded-[10px] border-[3px] border-solid border-transparent bg-clip-padding;
34
34
  }
35
35
  }
36
36