Skip to content

Commit 6014ced

Browse files
committed
fix: Migrate to new SASS module system
https://sass-lang.com/documentation/breaking-changes/import/ Originally, Sass used @import rules to load other files with a single global namespace, with all built-in functions also available globally. We’re deprecating both Sass @import rules and global built-in functions now that the module system (@use and @forward rules) has been available for several years. $ npm install -g sass-migrator $ sass-migrator module --migrate-deps src/assets/style.scss
1 parent 8328a6a commit 6014ced

File tree

6 files changed

+33
-29
lines changed

6 files changed

+33
-29
lines changed

src/assets/style/components/analysis.scss

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
@use "../helpers";
12

23
.analysis {
34
margin-top: 40px;
45
padding: 30px;
5-
background-color: $background-light;
6+
background-color: helpers.$background-light;
67
border-radius: 7.5px;
78

89
.analysis-header {
@@ -54,18 +55,18 @@
5455

5556
border: 1px solid rgba(255, 255, 255, 0.10);
5657
padding: 20px;
57-
background-color: $background-dark;
58+
background-color: helpers.$background-dark;
5859

5960
.analysis-item-label {
6061
font-family: 'rigid-square';
61-
color: $text-white;
62+
color: helpers.$text-white;
6263
font-size: 20px;
6364
font-style: normal;
6465
font-weight: 700;
6566
line-height: normal;
6667
}
6768
.analysis-item-data {
68-
color: $text-grey;
69+
color: helpers.$text-grey;
6970
font-size: 16px;
7071
font-style: normal;
7172
font-weight: 400;
@@ -82,7 +83,7 @@
8283
padding: 10px;
8384
overflow-x: scroll;
8485

85-
scrollbar-color: $background-dark #b00000;
86+
scrollbar-color: helpers.$background-dark #b00000;
8687
scrollbar-width: thin;
8788
}
8889

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1+
@use "../helpers";
12

23
.merkle {
34
margin-top: 40px;
45
padding: 30px;
5-
background-color: $background-light;
6+
background-color: helpers.$background-light;
67

78
h2 {
89
margin: 6px 0;
910
}
1011

1112
li {
12-
color: $text-grey;
13+
color: helpers.$text-grey;
1314
word-wrap: break-word;
1415
}
1516
}

src/assets/style/components/merkle_graph.scss

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@use "../helpers";
12

23
.merkle_graph {
34
position: relative;
@@ -7,7 +8,7 @@
78
margin-top: 20px;
89
border-radius: 7.5px;
910
svg {
10-
background-color: $background-dark;
11+
background-color: helpers.$background-dark;
1112
max-width: 100%;
1213
max-height: 100%;
1314
border-radius: 7.5px;
@@ -21,14 +22,14 @@
2122
stroke-width: 2;
2223
}
2324
rect {
24-
fill: $background-dark;
25+
fill: helpers.$background-dark;
2526
stroke: #4f4f4f;
2627
stroke-width: 1;
2728
}
2829

2930
.node-full-text{
3031
visibility: hidden;
31-
stroke: $background-dark;
32+
stroke: helpers.$background-dark;
3233
stroke-width: 4;
3334
fill: white;
3435
paint-order: stroke fill;

src/assets/style/components/program_window/program_input.scss

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
@use "../../helpers";
2+
13

24
.program-input{
3-
background-color: $background-light;
5+
background-color: helpers.$background-light;
46
padding: 30px;
57
border-radius: 7.5px;
68

79

810
&-field{
911
width: 100%;
10-
background-color: $background-dark;
12+
background-color: helpers.$background-dark;
1113
border-radius: 7.5px;
1214
border: 1px solid rgba(255, 255, 255, 0.10);
1315
color: #fdc667;
@@ -19,7 +21,7 @@
1921
outline: none;
2022
}
2123

22-
scrollbar-color: $background-dark #424242;
24+
scrollbar-color: helpers.$background-dark #424242;
2325
scrollbar-width: thin;
2426
}
2527
}

src/assets/style/components/tab_content.scss

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
.tab-content{
32
padding: 10px;
43
background: #1d2127;
@@ -47,7 +46,7 @@
4746
// key store tab
4847
.key-store-tab{
4948
.copy-button{
50-
@extend .flat-button;
49+
@extend .flat-button !optional;
5150
}
5251

5352
.key-store-display-row{
@@ -74,7 +73,7 @@
7473

7574
.hash-store-tab{
7675
.copy-button{
77-
@extend .flat-button;
76+
@extend .flat-button !optional;
7877
}
7978
}
8079

src/assets/style/style.scss

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
@import 'helpers.scss';
2-
@import 'components/analysis.scss';
3-
@import 'components/program_window/program_input.scss';
4-
@import 'components/merkle.scss';
5-
@import 'components/merkle_graph.scss';
6-
@import 'components/navbar.scss';
7-
@import 'components/string_box.scss';
8-
@import 'components/tab_content.scss';
9-
@import 'components/tooltip.scss';
10-
@import 'components/footer.scss';
1+
@use 'helpers.scss';
2+
@use 'components/analysis.scss';
3+
@use 'components/program_window/program_input.scss';
4+
@use 'components/merkle.scss';
5+
@use 'components/merkle_graph.scss';
6+
@use 'components/navbar.scss';
7+
@use 'components/string_box.scss';
8+
@use 'components/tab_content.scss';
9+
@use 'components/tooltip.scss';
10+
@use 'components/footer.scss';
1111

1212
* {
1313
box-sizing: border-box;
1414
}
1515

1616
html {
17-
scrollbar-color: $background-dark #424242;
17+
scrollbar-color: helpers.$background-dark #424242;
1818
scrollbar-width: thin;
1919
}
2020

2121
body {
22-
background-color: $body-background;
23-
color: $text-white;
22+
background-color: helpers.$body-background;
23+
color: helpers.$text-white;
2424
font-family: 'inter', sans-serif;
2525
}
2626

0 commit comments

Comments
 (0)