Commit
·
e061086
1
Parent(s):
f20173f
Updated SCSS to use @use instead of @import via sass-migrator
Browse files- .gitignore +1 -0
- app/styles/components/resize-handle.scss +4 -2
- app/styles/index.scss +8 -8
- package.json +0 -2
.gitignore
CHANGED
@@ -27,6 +27,7 @@ dist-ssr
|
|
27 |
/build
|
28 |
.env.local
|
29 |
.env
|
|
|
30 |
*.vars
|
31 |
.wrangler
|
32 |
_worker.bundle
|
|
|
27 |
/build
|
28 |
.env.local
|
29 |
.env
|
30 |
+
.dev.vars
|
31 |
*.vars
|
32 |
.wrangler
|
33 |
_worker.bundle
|
app/styles/components/resize-handle.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
[data-resize-handle] {
|
2 |
position: relative;
|
3 |
|
@@ -8,7 +10,7 @@
|
|
8 |
bottom: 0;
|
9 |
left: -6px;
|
10 |
right: -5px;
|
11 |
-
z-index:
|
12 |
}
|
13 |
|
14 |
&[data-panel-group-direction='vertical']:after {
|
@@ -18,7 +20,7 @@
|
|
18 |
right: 0;
|
19 |
top: -5px;
|
20 |
bottom: -6px;
|
21 |
-
z-index:
|
22 |
}
|
23 |
|
24 |
&[data-resize-handle-state='hover']:after,
|
|
|
1 |
+
@use "../z-index";
|
2 |
+
|
3 |
[data-resize-handle] {
|
4 |
position: relative;
|
5 |
|
|
|
10 |
bottom: 0;
|
11 |
left: -6px;
|
12 |
right: -5px;
|
13 |
+
z-index: z-index.$zIndexMax;
|
14 |
}
|
15 |
|
16 |
&[data-panel-group-direction='vertical']:after {
|
|
|
20 |
right: 0;
|
21 |
top: -5px;
|
22 |
bottom: -6px;
|
23 |
+
z-index: z-index.$zIndexMax;
|
24 |
}
|
25 |
|
26 |
&[data-resize-handle-state='hover']:after,
|
app/styles/index.scss
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
@
|
2 |
-
@
|
3 |
-
@
|
4 |
-
@
|
5 |
-
@
|
6 |
-
@
|
7 |
-
@
|
8 |
-
@
|
9 |
|
10 |
html,
|
11 |
body {
|
|
|
1 |
+
@use 'variables.scss';
|
2 |
+
@use 'z-index.scss';
|
3 |
+
@use 'animations.scss';
|
4 |
+
@use 'components/terminal.scss';
|
5 |
+
@use 'components/resize-handle.scss';
|
6 |
+
@use 'components/code.scss';
|
7 |
+
@use 'components/editor.scss';
|
8 |
+
@use 'components/toast.scss';
|
9 |
|
10 |
html,
|
11 |
body {
|
package.json
CHANGED
@@ -97,9 +97,7 @@
|
|
97 |
"devDependencies": {
|
98 |
"@blitz/eslint-plugin": "0.1.0",
|
99 |
"@cloudflare/workers-types": "^4.20241127.0",
|
100 |
-
"@jridgewell/sourcemap-codec": "^1.5.0",
|
101 |
"@remix-run/dev": "^2.15.0",
|
102 |
-
"@rollup/plugin-inject": "^5.0.5",
|
103 |
"@types/diff": "^5.2.3",
|
104 |
"@types/file-saver": "^2.0.7",
|
105 |
"@types/js-cookie": "^3.0.6",
|
|
|
97 |
"devDependencies": {
|
98 |
"@blitz/eslint-plugin": "0.1.0",
|
99 |
"@cloudflare/workers-types": "^4.20241127.0",
|
|
|
100 |
"@remix-run/dev": "^2.15.0",
|
|
|
101 |
"@types/diff": "^5.2.3",
|
102 |
"@types/file-saver": "^2.0.7",
|
103 |
"@types/js-cookie": "^3.0.6",
|