ui fixes
This commit is contained in:
parent
e8d68f95f3
commit
2ab03c3878
@ -312,6 +312,13 @@
|
||||
plotOptions: {
|
||||
series: {
|
||||
animation: false,
|
||||
marker: {
|
||||
enabled: false,
|
||||
states: {
|
||||
hover: { enabled: false }, // Disable marker on hover
|
||||
select: { enabled: false }, // Disable marker on selection
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
chart: {
|
||||
@ -356,6 +363,14 @@
|
||||
xAxis: {
|
||||
categories: dates,
|
||||
type: "datetime",
|
||||
endOnTick: false,
|
||||
categories: dates,
|
||||
crosshair: {
|
||||
color: "#fff", // Set the color of the crosshair line
|
||||
width: 1, // Adjust the line width as needed
|
||||
dashStyle: "Solid",
|
||||
},
|
||||
|
||||
labels: {
|
||||
style: {
|
||||
color: "#fff",
|
||||
@ -378,9 +393,6 @@
|
||||
data: valueList,
|
||||
color: "#fff",
|
||||
animation: false,
|
||||
marker: {
|
||||
enabled: false, // Hide point symbols
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "Avg",
|
||||
@ -399,9 +411,6 @@
|
||||
color: "#c2c7cf",
|
||||
dashStyle: "Dash",
|
||||
animation: false,
|
||||
marker: {
|
||||
enabled: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "High",
|
||||
@ -409,9 +418,6 @@
|
||||
color: "#c2c7cf",
|
||||
dashStyle: "Dash",
|
||||
animation: false,
|
||||
marker: {
|
||||
enabled: false,
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
BIN
src/lib/images/profile.webp
Normal file
BIN
src/lib/images/profile.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 23 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 40 KiB |
@ -1,9 +1,7 @@
|
||||
<script lang="ts">
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
import profile from "$lib/images/profile.webp";
|
||||
export let data;
|
||||
|
||||
let cloudFrontUrl = import.meta.env.VITE_IMAGE_URL;
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
@ -233,8 +231,8 @@
|
||||
>
|
||||
<div>
|
||||
<img
|
||||
class="rounded-lg object-cover shadow-lg w-24 h-24 sm:w-28 sm:h-28 m-auto mb-10 sm:mb-0"
|
||||
src={cloudFrontUrl + "/assets/mrahimi.webp"}
|
||||
class="rounded-full object-cover shadow-lg w-24 h-24 sm:w-28 sm:h-28 m-auto mb-10 sm:mb-0"
|
||||
src={profile}
|
||||
alt="Muslem Rahimi profile picture"
|
||||
loading="lazy"
|
||||
/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user