Adeguamento ui per ios
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<div class="bottom-sheet-backdrop @(IsSheetVisible ? "show" : "")" @onclick="CloseBottomSheet"></div>
|
||||
|
||||
<div class="bottom-sheet-container @(IsSheetVisible ? "show" : "")">
|
||||
<div class="bottom-sheet">
|
||||
<div class="bottom-sheet pb-safe-area">
|
||||
<div class="title">
|
||||
<MudText Typo="Typo.h6">
|
||||
<b>Filtri</b>
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<NavLink class="nav-link" href="Notification" Match="NavLinkMatch.All">
|
||||
<NavLink class="nav-link" href="Notifications" Match="NavLinkMatch.All">
|
||||
<div class="d-flex flex-column">
|
||||
<i class="ri-notification-4-line"></i>
|
||||
</div>
|
||||
@@ -66,7 +66,7 @@
|
||||
{
|
||||
var location = args.Location.Remove(0, NavigationManager.BaseUri.Length);
|
||||
|
||||
IsVisible = new List<string> { "Calendar", "Users", "PersonalInfo" }
|
||||
IsVisible = new List<string> { "Calendar", "Users", "PersonalInfo", "Notifications" }
|
||||
.Contains(location);
|
||||
StateHasChanged();
|
||||
};
|
||||
|
||||
@@ -22,14 +22,14 @@
|
||||
}
|
||||
|
||||
.nav-item ::deep .custom-plus-button .mud-icon-root {
|
||||
transition: .513s;
|
||||
transition: .5s;
|
||||
transform: rotate(0);
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.nav-item ::deep .custom-plus-button:focus .mud-icon-root {
|
||||
transform: rotate(225deg);
|
||||
}
|
||||
transform: rotate(225deg);
|
||||
}
|
||||
|
||||
.nav-item ::deep a {
|
||||
display: flex;
|
||||
@@ -55,9 +55,7 @@
|
||||
|
||||
.nav-item ::deep a.active > div > span { font-weight: 800; }
|
||||
|
||||
.nav-item ::deep a:not(.active) > div {
|
||||
color: var(--mud-palette-text-primary);
|
||||
}
|
||||
.nav-item ::deep a:not(.active) > div { color: var(--mud-palette-text-primary); }
|
||||
|
||||
.nav-item ::deep a i { font-size: 1.65rem; }
|
||||
|
||||
@@ -66,8 +64,4 @@
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
@supports (-webkit-touch-callout: none) {
|
||||
.nav-item { padding-bottom: env(safe-area-inset-bottom) !important; }
|
||||
|
||||
.nav-item ::deep > .nav-link { padding-bottom: 0 !important; }
|
||||
}
|
||||
@supports (-webkit-touch-callout: none) { .navbar { padding-bottom: env(safe-area-inset-bottom); } }
|
||||
Reference in New Issue
Block a user