neo.mjs 6.20.1 → 6.22.0

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.
Files changed (151) hide show
  1. package/apps/ServiceWorker.mjs +2 -2
  2. package/apps/colors/view/HeaderToolbar.mjs +7 -3
  3. package/apps/covid/view/MainContainerController.mjs +6 -6
  4. package/apps/covid/view/TableContainer.mjs +5 -3
  5. package/apps/covid/view/country/Gallery.mjs +6 -4
  6. package/apps/form/view/ViewportModel.mjs +2 -2
  7. package/apps/portal/index.html +23 -1
  8. package/apps/portal/view/HeaderToolbar.mjs +2 -2
  9. package/apps/portal/view/Viewport.mjs +3 -1
  10. package/apps/portal/view/ViewportController.mjs +10 -0
  11. package/apps/portal/view/about/Container.mjs +44 -0
  12. package/apps/portal/view/about/MemberContainer.mjs +191 -0
  13. package/apps/portal/view/home/MainContainer.mjs +9 -2
  14. package/apps/portal/view/home/parts/AfterMath.mjs +12 -8
  15. package/apps/portal/view/home/parts/Colors.mjs +8 -2
  16. package/apps/portal/view/home/parts/Features.mjs +50 -83
  17. package/apps/portal/view/home/parts/Helix.mjs +8 -2
  18. package/apps/portal/view/home/parts/MainNeo.mjs +17 -5
  19. package/apps/portal/view/learn/ContentView.mjs +18 -4
  20. package/apps/realworld/api/Base.mjs +5 -5
  21. package/apps/realworld/view/MainContainerController.mjs +19 -17
  22. package/apps/realworld2/api/Base.mjs +5 -5
  23. package/apps/realworld2/view/MainContainerController.mjs +11 -11
  24. package/apps/realworld2/view/article/Gallery.mjs +6 -4
  25. package/apps/sharedcovid/view/MainContainerController.mjs +11 -12
  26. package/apps/sharedcovid/view/TableContainer.mjs +7 -5
  27. package/apps/sharedcovid/view/country/Gallery.mjs +6 -4
  28. package/apps/shareddialog/view/MainContainerController.mjs +5 -5
  29. package/buildScripts/webpack/json/myApps.template.json +1 -2
  30. package/docs/app/view/classdetails/MembersList.mjs +8 -8
  31. package/docs/app/view/classdetails/SourceViewComponent.mjs +6 -6
  32. package/docs/app/view/classdetails/TutorialComponent.mjs +9 -9
  33. package/examples/ServiceWorker.mjs +2 -2
  34. package/examples/component/coronaGallery/CountryGallery.mjs +6 -4
  35. package/examples/component/helix/Viewport.mjs +2 -2
  36. package/examples/list/circle/MainContainer.mjs +7 -7
  37. package/examples/preloadingAssets/view/MainContainerController.mjs +5 -5
  38. package/package.json +5 -5
  39. package/resources/data/deck/learnneo/pages/GuideEvents.md +2 -4
  40. package/resources/data/deck/learnneo/pages/WhyNeo-Features.md +46 -0
  41. package/resources/data/deck/learnneo/pages/WhyNeo-Intro.md +5 -6
  42. package/resources/data/deck/learnneo/pages/WhyNeo-Multi-Window.md +1 -1
  43. package/resources/data/deck/learnneo/tree.json +3 -2
  44. package/resources/fonts/GT-Planar-Regular.otf +0 -0
  45. package/resources/images/logo/neo_logo_favicon.svg +16 -0
  46. package/resources/images/team/tobiu.png +0 -0
  47. package/resources/scss/src/apps/colors/HeaderToolbar.scss +23 -1
  48. package/resources/scss/src/apps/colors/Viewport.scss +10 -0
  49. package/resources/scss/src/apps/portal/HeaderToolbar.scss +7 -7
  50. package/resources/scss/src/apps/portal/Viewport.scss +10 -0
  51. package/resources/scss/src/apps/portal/about/Container.scss +4 -0
  52. package/resources/scss/src/apps/portal/about/MemberContainer.scss +70 -0
  53. package/resources/scss/src/apps/portal/home/FooterContainer.scss +12 -0
  54. package/resources/scss/src/apps/portal/home/parts/BaseContainer.scss +16 -16
  55. package/resources/scss/src/apps/portal/home/parts/MainNeo.scss +62 -7
  56. package/resources/scss/src/apps/portal/learn/ContentView.scss +1 -0
  57. package/resources/scss/src/apps/portal/learn/PageContainer.scss +6 -0
  58. package/resources/scss/src/code/LivePreview.scss +4 -1
  59. package/resources/scss/src/layout/Cube.scss +3 -3
  60. package/resources/scss/src/plugin/Resizable.scss +12 -19
  61. package/resources/scss/theme-neo-light/dialog/Base.scss +12 -2
  62. package/src/DefaultConfig.mjs +2 -2
  63. package/src/calendar/view/MainContainer.mjs +10 -10
  64. package/src/calendar/view/SettingsContainer.mjs +10 -10
  65. package/src/calendar/view/YearComponent.mjs +2 -2
  66. package/src/calendar/view/calendars/List.mjs +2 -2
  67. package/src/calendar/view/month/Component.mjs +4 -4
  68. package/src/calendar/view/week/Component.mjs +2 -2
  69. package/src/calendar/view/week/plugin/DragDrop.mjs +4 -4
  70. package/src/code/LivePreview.mjs +92 -6
  71. package/src/component/Base.mjs +3 -3
  72. package/src/component/Circle.mjs +5 -5
  73. package/src/component/DateSelector.mjs +4 -4
  74. package/src/component/Gallery.mjs +8 -8
  75. package/src/component/Helix.mjs +15 -12
  76. package/src/component/Toast.mjs +1 -1
  77. package/src/component/wrapper/AmChart.mjs +2 -2
  78. package/src/component/wrapper/CesiumJS.mjs +2 -2
  79. package/src/component/wrapper/GoogleMaps.mjs +2 -2
  80. package/src/component/wrapper/MonacoEditor.mjs +3 -3
  81. package/src/core/Observable.mjs +2 -2
  82. package/src/data/Store.mjs +2 -2
  83. package/src/dialog/Base.mjs +44 -14
  84. package/src/draggable/DragZone.mjs +4 -4
  85. package/src/draggable/list/DragZone.mjs +4 -4
  86. package/src/draggable/tab/header/toolbar/SortZone.mjs +2 -2
  87. package/src/draggable/toolbar/DragZone.mjs +4 -4
  88. package/src/draggable/toolbar/SortZone.mjs +3 -3
  89. package/src/form/field/ComboBox.mjs +3 -2
  90. package/src/form/field/FileUpload.mjs +3 -3
  91. package/src/form/field/Text.mjs +2 -2
  92. package/src/form/field/TextArea.mjs +2 -2
  93. package/src/grid/Container.mjs +2 -2
  94. package/src/layout/Cube.mjs +1 -3
  95. package/src/list/plugin/Animate.mjs +23 -23
  96. package/src/main/DomAccess.mjs +1 -1
  97. package/src/main/DomEvents.mjs +14 -5
  98. package/src/main/addon/AmCharts.mjs +2 -2
  99. package/src/main/addon/MapboxGL.mjs +4 -4
  100. package/src/manager/DomEvent.mjs +2 -2
  101. package/src/manager/Focus.mjs +2 -2
  102. package/src/manager/Toast.mjs +6 -4
  103. package/src/manager/rpc/Message.mjs +2 -2
  104. package/src/plugin/Resizable.mjs +11 -3
  105. package/src/selection/HelixModel.mjs +3 -3
  106. package/src/tab/Strip.mjs +4 -4
  107. package/src/table/Container.mjs +4 -4
  108. package/src/util/Logger.mjs +6 -4
  109. package/src/worker/App.mjs +2 -2
  110. package/src/worker/Manager.mjs +3 -2
  111. package/apps/website/Overwrites.mjs +0 -16
  112. package/apps/website/app.mjs +0 -7
  113. package/apps/website/data/blog.json +0 -769
  114. package/apps/website/data/docs.json +0 -29
  115. package/apps/website/data/examples_devmode.json +0 -173
  116. package/apps/website/data/examples_dist_dev.json +0 -164
  117. package/apps/website/data/examples_dist_prod.json +0 -164
  118. package/apps/website/index.html +0 -11
  119. package/apps/website/model/BlogPost.mjs +0 -60
  120. package/apps/website/model/Example.mjs +0 -48
  121. package/apps/website/neo-config.json +0 -7
  122. package/apps/website/store/BlogPosts.mjs +0 -39
  123. package/apps/website/store/Examples.mjs +0 -35
  124. package/apps/website/view/HeaderContainer.mjs +0 -72
  125. package/apps/website/view/MainContainer.mjs +0 -95
  126. package/apps/website/view/MainContainerController.mjs +0 -230
  127. package/apps/website/view/blog/Container.mjs +0 -50
  128. package/apps/website/view/blog/List.mjs +0 -171
  129. package/apps/website/view/examples/List.mjs +0 -124
  130. package/apps/website/view/examples/TabContainer.mjs +0 -66
  131. package/apps/website/view/home/DeveloperIntroComponent.mjs +0 -266
  132. package/apps/website/view/home/ExecutiveIntroComponent.mjs +0 -291
  133. package/apps/website/view/home/TabContainer.mjs +0 -56
  134. package/resources/scss/src/apps/website/HeaderContainer.scss +0 -136
  135. package/resources/scss/src/apps/website/MainContainer.scss +0 -25
  136. package/resources/scss/src/apps/website/blog/Container.scss +0 -18
  137. package/resources/scss/src/apps/website/blog/List.scss +0 -183
  138. package/resources/scss/src/apps/website/examples/List.scss +0 -157
  139. package/resources/scss/src/apps/website/home/TabContainer.scss +0 -117
  140. package/resources/scss/theme-dark/apps/website/HeaderContainer.scss +0 -5
  141. package/resources/scss/theme-dark/apps/website/MainContainer.scss +0 -4
  142. package/resources/scss/theme-dark/apps/website/blog/Container.scss +0 -3
  143. package/resources/scss/theme-dark/apps/website/home/TabContainer.scss +0 -4
  144. package/resources/scss/theme-light/apps/website/HeaderContainer.scss +0 -5
  145. package/resources/scss/theme-light/apps/website/MainContainer.scss +0 -4
  146. package/resources/scss/theme-light/apps/website/blog/Container.scss +0 -3
  147. package/resources/scss/theme-light/apps/website/home/TabContainer.scss +0 -4
  148. package/resources/scss/theme-neo-light/apps/website/HeaderContainer.scss +0 -5
  149. package/resources/scss/theme-neo-light/apps/website/MainContainer.scss +0 -4
  150. package/resources/scss/theme-neo-light/apps/website/blog/Container.scss +0 -3
  151. package/resources/scss/theme-neo-light/apps/website/home/TabContainer.scss +0 -4
@@ -1,183 +0,0 @@
1
- .website-blog-list.neo-list {
2
- transition: padding var(--website-transition-duration) ease-out;
3
-
4
- .neo-list-item {
5
- cursor : default;
6
- display : flex;
7
- max-width : 800px;
8
- overflow : hidden;
9
- padding : 0;
10
- transition : height var(--website-transition-duration) ease-out, margin-bottom var(--website-transition-duration) ease-out;
11
- white-space: normal;
12
- width : 100%;
13
-
14
- .content {
15
- flex: 1;
16
- }
17
-
18
- .neo-absolute {
19
- position: absolute;
20
- }
21
-
22
- .neo-bold {
23
- font-weight: 600;
24
- }
25
-
26
- .neo-highlight-search {
27
- color: #5d83a7;
28
- }
29
-
30
- .neo-inner-content {
31
- color : #fff;
32
- display : inline-block;
33
- margin-left: 10px;
34
- text-shadow: 1px 1px 1px #000, 1px 1px 1px #fff;
35
- transition : font-size var(--website-transition-duration) ease-out;
36
- }
37
-
38
- .neo-full-size {
39
- height: 100%;
40
- width : 100%;
41
- }
42
-
43
- .neo-inner-details {
44
- transition: line-height var(--website-transition-duration) ease-out;
45
- }
46
-
47
- .neo-item-bottom-position {
48
- bottom : 0;
49
- left : 0;
50
- transition: margin var(--website-transition-duration) ease-out;
51
- }
52
-
53
- .neo-item-top-position {
54
- color : #fff;
55
- right : 0;
56
- text-align : end;
57
- text-shadow: 1px 1px 1px #000, 1px 1px 1px #fff;
58
- transition : font-size var(--website-transition-duration) ease-out, margin var(--website-transition-duration) ease-out;
59
- }
60
-
61
- .neo-relative {
62
- position: relative;
63
- }
64
-
65
- .neo-title {
66
- color : #fff;
67
- font-weight : 600;
68
- line-height : 1;
69
- text-decoration: none;
70
- text-shadow : 1px 1px 1px #000, 1px 1px 1px #fff;
71
- transition : color 250ms ease-out;
72
-
73
- &:hover {
74
- color: #5d83a7
75
- }
76
- }
77
-
78
- .neo-top-20 {
79
- align-items: center;
80
- display : flex;
81
- transition : margin var(--website-transition-duration) ease-out;
82
- }
83
-
84
- .neo-user-image {
85
- border-radius: 50%;
86
- display : inline-block;
87
- transition : height var(--website-transition-duration) ease-out, width var(--website-transition-duration) ease-out;
88
- }
89
-
90
- .preview-image {
91
- background-blend-mode: overlay;
92
- background-position : 50% 50%;
93
- background-size : cover;
94
- height : 100%;
95
- }
96
- }
97
-
98
- @media (max-height: 400px), (max-width: 600px) {
99
- padding: 5px 5px 0 5px;
100
-
101
- .neo-inner-content {
102
- font-size: 12px;
103
- }
104
-
105
- .neo-inner-details {
106
- line-height: 16px;
107
- }
108
-
109
- .neo-item-bottom-position {
110
- margin: 9px 12px;
111
- right : 15%;
112
- }
113
-
114
- .neo-item-top-position {
115
- font-size: 12px;
116
- left : 15%;
117
- margin : 9px 12px;
118
- top : -200px;
119
- }
120
-
121
- .neo-list-item {
122
- border-radius: 10px;
123
- height : 200px;
124
- margin-bottom: 5px;
125
- }
126
-
127
- .neo-title {
128
- font-size: 20px;
129
- }
130
-
131
- .neo-top-20 {
132
- margin-top: 15px;
133
- }
134
-
135
- .neo-user-image {
136
- height: 30px;
137
- width : 30px;
138
- }
139
- }
140
-
141
- @media (min-height: 401px) and (min-width: 601px) {
142
- padding: 10px 10px 0 10px;
143
-
144
- .neo-inner-content {
145
- font-size: 16px;
146
- }
147
-
148
- .neo-inner-details {
149
- line-height: 22px;
150
- }
151
-
152
- .neo-item-bottom-position {
153
- margin: 30px 40px;
154
- right : 30%;
155
- }
156
-
157
- .neo-item-top-position {
158
- font-size: 16px;
159
- left : 30%;
160
- margin : 30px 40px;
161
- top : 0;
162
- }
163
-
164
- .neo-list-item {
165
- border-radius: 20px;
166
- height : 400px;
167
- margin-bottom: 10px;
168
- }
169
-
170
- .neo-title {
171
- font-size: 34px;
172
- }
173
-
174
- .neo-top-20 {
175
- margin-top: 20px;
176
- }
177
-
178
- .neo-user-image {
179
- height: 44px;
180
- width : 44px;
181
- }
182
- }
183
- }
@@ -1,157 +0,0 @@
1
- .website-examples-list.neo-list {
2
- transition: padding var(--website-transition-duration) ease-out;
3
-
4
- .neo-list-item {
5
- cursor : default;
6
- display : flex;
7
- max-width : 800px;
8
- overflow : hidden;
9
- padding : 0;
10
- transition : height var(--website-transition-duration) ease-out, margin-bottom var(--website-transition-duration) ease-out;
11
- white-space: normal;
12
- width : 100%;
13
-
14
- .content {
15
- flex: 1;
16
- }
17
-
18
- .neo-absolute {
19
- position: absolute;
20
- }
21
-
22
- .neo-full-size {
23
- height: 100%;
24
- width : 100%;
25
- }
26
-
27
- .neo-github-image {
28
- color : #ddd;
29
- text-decoration : none;
30
- transition-duration : var(--website-transition-duration);
31
- transition-property : font-size, height, width;
32
- transition-timing-function: ease-out;
33
- }
34
-
35
- .neo-inner-content {
36
- color : #fff;
37
- display : inline-block;
38
- margin-left: 10px;
39
- text-shadow: 1px 1px 1px #000, 1px 1px 1px #fff;
40
- transition : font-size var(--website-transition-duration) ease-out;
41
- }
42
-
43
- .neo-inner-details {
44
- transition: line-height var(--website-transition-duration) ease-out;
45
- }
46
-
47
- .neo-item-bottom-position {
48
- bottom : 0;
49
- left : 0;
50
- transition: margin var(--website-transition-duration) ease-out;
51
- }
52
-
53
- .neo-relative {
54
- position: relative;
55
- }
56
-
57
- .neo-title {
58
- color : #fff;
59
- font-weight : 600;
60
- line-height : 1;
61
- text-decoration: none;
62
- text-shadow : 1px 1px 1px #000, 1px 1px 1px #fff;
63
- transition : color 250ms ease-out;
64
-
65
- &:hover {
66
- color: #5d83a7
67
- }
68
- }
69
-
70
- .neo-top-20 {
71
- align-items: center;
72
- display : flex;
73
- transition : margin var(--website-transition-duration) ease-out;
74
- }
75
-
76
- .preview-image {
77
- background-blend-mode: overlay;
78
- background-size : cover;
79
- height : 100%;
80
- }
81
- }
82
-
83
- @media (max-height: 400px), (max-width: 600px) {
84
- padding: 5px 5px 0 5px;
85
-
86
- .neo-github-image {
87
- font-size: 30px;
88
- height : 30px;
89
- width : 30px;
90
- }
91
-
92
- .neo-inner-content {
93
- font-size: 12px;
94
- }
95
-
96
- .neo-inner-details {
97
- line-height: 16px;
98
- }
99
-
100
- .neo-item-bottom-position {
101
- margin: 9px 12px;
102
- right : 15%;
103
- }
104
-
105
- .neo-list-item {
106
- border-radius: 10px;
107
- height : 200px;
108
- margin-bottom: 5px;
109
- }
110
-
111
- .neo-title {
112
- font-size: 20px;
113
- }
114
-
115
- .neo-top-20 {
116
- margin-top: 10px;
117
- }
118
- }
119
-
120
- @media (min-height: 401px) and (min-width: 601px) {
121
- padding: 10px 10px 0 10px;
122
-
123
- .neo-github-image {
124
- font-size: 44px;
125
- height : 44px;
126
- width : 44px;
127
- }
128
-
129
- .neo-inner-content {
130
- font-size: 16px;
131
- }
132
-
133
- .neo-inner-details {
134
- font-size : 16px;
135
- line-height: 22px;
136
- }
137
-
138
- .neo-item-bottom-position {
139
- margin: 30px 40px;
140
- right : 30%;
141
- }
142
-
143
- .neo-list-item {
144
- border-radius: 20px;
145
- height : 400px;
146
- margin-bottom: 10px;
147
- }
148
-
149
- .neo-title {
150
- font-size: 34px;
151
- }
152
-
153
- .neo-top-20 {
154
- margin-top: 20px;
155
- }
156
- }
157
- }
@@ -1,117 +0,0 @@
1
- .website-home-tab-container {
2
- .neo-tab-content-container {
3
- border: none;
4
- }
5
-
6
- .website-intro-component {
7
- color : var(--website-home-color);
8
- flex : auto !important;
9
- font-weight: 400;
10
- overflow-y : auto;
11
- position : relative;
12
- word-break : break-word;
13
-
14
- .neo-absolute {
15
- position: absolute;
16
- }
17
-
18
- a {
19
- color: #1c60a0;
20
- }
21
-
22
- h1 {
23
- color : var(--website-home-h1-color);
24
- font-weight : 600;
25
- margin-bottom: -0.28em;
26
- margin-top : 1em;
27
- transition : font-size var(--website-transition-duration) ease-out, line-height var(--website-transition-duration) ease-out;
28
- }
29
-
30
- li {
31
- margin-bottom : -0.46em;
32
- margin-left : 30px;
33
- padding-left : 0;
34
- transition-duration : var(--website-transition-duration);
35
- transition-property : font-size, line-height, margin-top;
36
- transition-timing-function: ease-out;
37
- }
38
-
39
- ol, ul {
40
- list-style: none;
41
- margin : 0;
42
- padding : 0;
43
- }
44
-
45
- ol > li {
46
- list-style-type: decimal;
47
- }
48
-
49
- ol ul > li {
50
- margin-left: 0;
51
-
52
- &:first-child {
53
- margin-top: .40em;
54
- }
55
- }
56
-
57
- p {
58
- margin-bottom: -0.46em;
59
- margin-top : 0.86em;
60
- transition : font-size var(--website-transition-duration) ease-out, line-height var(--website-transition-duration) ease-out;
61
- }
62
-
63
-
64
- .nav-link {
65
- cursor : pointer;
66
- text-decoration: none;
67
-
68
- &:hover {
69
- text-decoration: underline;
70
- }
71
- }
72
-
73
- .nav-target {
74
- transition: color 300ms ease-out;
75
- }
76
-
77
- @media (max-height: 400px), (max-width: 600px) {
78
- padding: 0 20px 20px 20px;
79
-
80
- h1 {
81
- font-size : 26px;
82
- line-height: 32px;
83
- }
84
-
85
- li {
86
- font-size : 18px;
87
- line-height: 28px;
88
- margin-top : 0.67em;
89
- }
90
-
91
- p {
92
- font-size : 18px;
93
- line-height: 28px;
94
- }
95
- }
96
-
97
- @media (min-height: 401px) and (min-width: 601px) {
98
- padding: 0 32px 32px 32px;
99
-
100
- h1 {
101
- font-size : 36px;
102
- line-height: 40px;
103
- }
104
-
105
- li {
106
- font-size : 21px;
107
- line-height: 32px;
108
- margin-top : 0.86em;
109
- }
110
-
111
- p {
112
- font-size : 21px;
113
- line-height: 32px;
114
- }
115
- }
116
- }
117
- }
@@ -1,5 +0,0 @@
1
- :root .neo-theme-dark { // .website-header-container
2
- --website-header-button-background-image: linear-gradient(#999,#111);
3
- --website-header-button-glyph-color : #eee;
4
- --website-header-button-border : 1px solid #999;
5
- }
@@ -1,4 +0,0 @@
1
- :root .neo-theme-dark { // .website-main-container
2
- --website-background-image : linear-gradient(#444, #222);
3
- --website-transition-duration: 300ms;
4
- }
@@ -1,3 +0,0 @@
1
- :root .neo-theme-dark { // .website-blog-container
2
- --website-blog-toolbar-background-color: #323232;
3
- }
@@ -1,4 +0,0 @@
1
- :root .neo-theme-dark { // .website-home-tab-container
2
- --website-home-color : #bbb;
3
- --website-home-h1-color: #ddd;
4
- }
@@ -1,5 +0,0 @@
1
- :root .neo-theme-light { // .website-header-container
2
- --website-header-button-background-image: linear-gradient(#fff,#ccc);
3
- --website-header-button-glyph-color : #1c60a0;
4
- --website-header-button-border : 1px solid #ddd;
5
- }
@@ -1,4 +0,0 @@
1
- :root .neo-theme-light { // .website-main-container
2
- --website-background-image : linear-gradient(#eee, #ddd);
3
- --website-transition-duration: 300ms;
4
- }
@@ -1,3 +0,0 @@
1
- :root .neo-theme-light { // .website-blog-container
2
- --website-blog-toolbar-background-color: #f2f2f2;
3
- }
@@ -1,4 +0,0 @@
1
- :root .neo-theme-light { // .website-home-tab-container
2
- --website-home-color : #292929;
3
- --website-home-h1-color: #292929;
4
- }
@@ -1,5 +0,0 @@
1
- :root .neo-theme-neo-light { // .website-header-container
2
- --website-header-button-background-image: linear-gradient(#fff,#ccc);
3
- --website-header-button-glyph-color : #1c60a0;
4
- --website-header-button-border : 1px solid #ddd;
5
- }
@@ -1,4 +0,0 @@
1
- :root .neo-theme-neo-light { // .website-main-container
2
- --website-background-image : linear-gradient(#eee, #ddd);
3
- --website-transition-duration: 300ms;
4
- }
@@ -1,3 +0,0 @@
1
- :root .neo-theme-neo-light { // .website-blog-container
2
- --website-blog-toolbar-background-color: #f2f2f2;
3
- }
@@ -1,4 +0,0 @@
1
- :root .neo-theme-neo-light { // .website-home-tab-container
2
- --website-home-color : #292929;
3
- --website-home-h1-color: #292929;
4
- }