Skip to content

Commit

Permalink
Styling of nob
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferStrube committed Jan 13, 2025
1 parent b4fb187 commit e29d607
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
# Checkout the code
- uses: actions/checkout@v2

# Install .NET 8.0 SDK
- name: Setup .NET 8 preview
# Install .NET 9.0 SDK
- name: Setup .NET 9 preview
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'
include-prerelease: true

# Added Ahead-Of-Time workload
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<RunAOTCompilation>true</RunAOTCompilation>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand All @@ -14,8 +14,8 @@
<PackageReference Include="KristofferStrube.Blazor.CSSView" Version="0.1.0-alpha.0" />
<PackageReference Include="KristofferStrube.Blazor.MediaStreamRecording" Version="0.1.0-alpha.1" />
<PackageReference Include="KristofferStrube.Blazor.SVGEditor" Version="0.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.3" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ else
while (true)
{
await leftAnalyzerNode.GetByteTimeDomainDataAsync(leftTimeDomainDataArray);
await Task.Delay(10);
leftTimeDomainMeasurements = await leftTimeDomainDataArray.GetAsArrayAsync();

await rightAnalyzerNode.GetByteTimeDomainDataAsync(rightTimeDomainDataArray);
await Task.Delay(10);
rightTimeDomainMeasurements = await rightTimeDomainDataArray.GetAsArrayAsync();

await Task.Delay(10);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
::deep .anchor-inner-thin {
stroke-width: 2;
r: 10
}

::deep .anchor-inner-thick {
stroke-width: 4;
r: 10
}

::deep .anchor-outer-thin {
stroke-width: 2;
r: 12
}

::deep .anchor-outer-thick {
stroke-width: 4;
r: 14
}

0 comments on commit e29d607

Please sign in to comment.