Skip to content

Commit bb1ef78

Browse files
committed
(#418) web: udpate studnets service
1 parent 49813ed commit bb1ef78

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

MiniSpace.Web/src/Astravent.Web.Wasm/DTO/NotificationPreferencesDto.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Astravent.Web.Wasm.DTO
55
{
66
public class NotificationPreferencesDto
77
{
8-
public Guid StudentId { get; set; }
8+
public Guid UserId { get; set; }
99
public bool AccountChanges { get; set; }
1010
public bool SystemLogin { get; set; }
1111
public bool NewEvent { get; set; }

MiniSpace.Web/src/Astravent.Web.Wasm/Shared/MainLayout.razor

-3
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,13 @@
2626
{
2727
@if (!isPC)
2828
{
29-
<!-- Mobile Version: Drawer Menu for Unauthenticated User -->
3029
<MudButton Variant="Variant.Text" OnClick="@ToggleDrawer">
3130
<img src="icons/menu-left.svg" alt="Menu" style="height: 24px; width: 24px;" />
3231
</MudButton>
3332
<MudText Typo="Typo.h4" Class="ms-2">MiniSpace</MudText>
3433
}
3534
else
3635
{
37-
<!-- Desktop Version: Menu and Navigation Links -->
3836
<MudText Typo="Typo.h4" Class="me-3">MiniSpace</MudText>
3937
<MudButton Variant="Variant.Text" OnClick="ScrollToHome" Class="me-2">
4038
Home
@@ -43,7 +41,6 @@
4341
About App
4442
</MudButton>
4543

46-
<!-- Dropdown Menu for Unauthenticated Users -->
4744
<MudMenu Label="Open Menu">
4845
<MudMenuItem OnClick="ScrollToConnect">Connect</MudMenuItem>
4946
<MudMenuItem Href="signin">Sign In</MudMenuItem>

MiniSpace.Web/src/Astravent.Web.Wasm/Shared/themes/MiniSpaceTheme.cs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ public static class MiniSpaceTheme
66
{
77
Palette = new PaletteLight()
88
{
9-
// Light Mode Colors
109
Primary = Colors.Indigo.Darken4,
1110
Secondary = Colors.Indigo.Darken3,
1211
AppbarText = Colors.Indigo.Darken4,

MiniSpace.Web/src/Astravent.Web.Wasm/wwwroot/index.html

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@
1313
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap" rel="stylesheet">
1414
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
1515
<link href="_content/Cropper.Blazor/cropper.min.css" rel="stylesheet" />
16-
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
17-
<link href="_content/MudBlazor.Markdown/MudBlazor.Markdown.min.css" rel="stylesheet" />
16+
1817
<link href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.12/cropper.min.css" rel="stylesheet" />
19-
<link href="css/site.css" rel="stylesheet" />
18+
2019
<link rel="icon" type="image/png" href="favicon.png" />
2120
<link href="manifest.webmanifest" rel="manifest" />
2221
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
@@ -28,6 +27,11 @@
2827
<link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
2928
<link href="_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css" rel="stylesheet" />
3029

30+
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
31+
<link href="_content/MudBlazor.Markdown/MudBlazor.Markdown.min.css" rel="stylesheet" />
32+
33+
<link href="css/site.css" rel="stylesheet" />
34+
3135
<!-- PWA Theme Color -->
3236
<meta name="theme-color" content="#03173d" />
3337
</head>

0 commit comments

Comments
 (0)