@rileybathurst/paddle 0.0.121 → 0.0.123
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,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react"
|
|
2
2
|
import { Link } from 'gatsby';
|
|
3
|
-
import Markdown from "react-markdown";
|
|
3
|
+
// import Markdown from "react-markdown";
|
|
4
4
|
import type { LocationCardTypes } from "./types/location-card-types";
|
|
5
5
|
import HourMin from "./hour-min";
|
|
6
6
|
import Phone from "./phone";
|
|
@@ -126,9 +126,9 @@ function Content({ svg, name, address, description, opening_time, closing_time,
|
|
|
126
126
|
|
|
127
127
|
(<>
|
|
128
128
|
<h3 className="elbrus">{name}</h3>
|
|
129
|
-
<Markdown className="react-markdown">
|
|
129
|
+
{/* <Markdown className="react-markdown">
|
|
130
130
|
{address.data.address}
|
|
131
|
-
</Markdown>
|
|
131
|
+
</Markdown> */}
|
|
132
132
|
</>)}
|
|
133
133
|
|
|
134
134
|
</div>
|
|
@@ -145,9 +145,11 @@ function Content({ svg, name, address, description, opening_time, closing_time,
|
|
|
145
145
|
offSeasonDetails={offSeasonDetails}
|
|
146
146
|
/>
|
|
147
147
|
) : (
|
|
148
|
-
|
|
148
|
+
<>
|
|
149
|
+
{/* <Markdown className="react-markdown" >
|
|
149
150
|
{description.data.description}
|
|
150
|
-
|
|
151
|
+
</Markdown> */}
|
|
152
|
+
</>
|
|
151
153
|
)}
|
|
152
154
|
</div>
|
|
153
155
|
</>
|
package/src/styles/variables.css
CHANGED
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
--navy-200: oklch(37.5% 0.07 230);
|
|
22
22
|
--navy-300: oklch(25% 0.04 230);
|
|
23
23
|
|
|
24
|
+
@supports not (oklch: 50% 0.09 230) {
|
|
25
|
+
--navy-100: #1b6c8c;
|
|
26
|
+
--navy-200: #0a475f;
|
|
27
|
+
--navy-300: #092531;
|
|
28
|
+
}
|
|
29
|
+
|
|
24
30
|
/*------------------------------------*/
|
|
25
31
|
|
|
26
32
|
--card-radius: 0.25rem;
|