Skip to content

Commit e778fc0

Browse files
committed
fixed sass warning messages using deprecated code
1 parent 74cc04d commit e778fc0

File tree

8 files changed

+21
-35
lines changed

8 files changed

+21
-35
lines changed

src/app/styles/components/_actionComponent.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
}
118118

119119
.current-snap {
120-
font-weight: 900;
120+
font-weight: 800;
121121
border: none;
122122
background: transparent;
123123
font-size: 1rem;

src/app/styles/components/_buttons.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
2-
31
.play-button {
42
display: flex;
53
align-items: center;
@@ -12,7 +10,6 @@
1210
border: none;
1311
background-color: #1f2937;
1412
color: white;
15-
font-family: 'Outfit', sans-serif;
1613
font-size: 14px;
1714
font-weight: 500;
1815
cursor: pointer;

src/app/styles/components/_performanceVisx.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
2-
31
.saveSeriesContainer {
42
display: flex;
53
align-items: center;

src/app/styles/components/d3graph.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
21
/* Base node styling */
32
.node {
43
cursor: pointer;
@@ -40,7 +39,6 @@
4039
}
4140

4241
.node--internal text {
43-
font-family: 'Outfit', sans-serif;
4442
font-size: 14px;
4543
font-weight: 500;
4644
fill: #374151;

src/app/styles/components/diff.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
21
.jsondiffpatch-delta {
3-
font-family: 'Outfit', sans-serif;
42
font-size: 14px;
53
margin: 0;
64
padding: 0;
75
display: inline-block;
86
}
97
.jsondiffpatch-delta pre {
10-
font-family: 'Outfit', sans-serif;
118
font-size: 14px;
129
margin: 0;
1310
padding: 0;

src/app/styles/layout/_buttonsContainer.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
2-
31
.buttons-container {
42
display: flex;
53
align-items: center;

src/app/styles/layout/_errorContainer.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
2-
* {
3-
font-family: 'Outfit', sans-serif;
4-
}
5-
61
.error-container {
72
height: 100%;
83
background-color: #f9fafb;
94
display: flex;
105
flex-direction: column;
116
align-items: center;
127
justify-content: center;
13-
font-family: 'Outfit', sans-serif;
148
}
159

1610
.error-logo {

src/app/styles/main.scss

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
@charset 'UTF-8';
1+
@use 'base/helpers';
2+
3+
@use 'layout/mainContainer';
4+
@use 'layout/bodyContainer';
5+
@use 'layout/actionContainer';
6+
@use 'layout/errorContainer';
7+
@use 'layout/stateContainer';
8+
@use 'layout/travelContainer';
9+
@use 'layout/buttonsContainer';
10+
11+
@use 'components/buttons';
12+
@use 'components/actionComponent';
13+
@use 'components/performanceVisx';
14+
@use 'components/componentMap';
15+
@use 'components/ax';
16+
17+
@use './components/rc-slider';
18+
@use './components/d3graph';
19+
@use './components/diff';
20+
221
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
322

423
* {
@@ -17,18 +36,3 @@ body {
1736
padding: 0;
1837
height: 100%;
1938
}
20-
21-
@import 'base/helpers';
22-
23-
@import 'layout/mainContainer', 'layout/bodyContainer', 'layout/actionContainer',
24-
'layout/errorContainer', 'layout/stateContainer', 'layout/travelContainer',
25-
'layout/buttonsContainer';
26-
27-
@import 'components/buttons', 'components/actionComponent', 'components/performanceVisx',
28-
'components/componentMap', 'components/ax';
29-
30-
@import './components/rc-slider';
31-
32-
@import './components/d3graph';
33-
34-
@import './components/diff';

0 commit comments

Comments
 (0)