Hello guys
I am developing a Blazor WASM app in which I use all of your components(which are fantastic)
but for some reason I cannot configure the layout to be responsive.
Can you give me some hints how should I tweak it ? Screenshot
MainLayout looks like this (code mainly copied from your examples)
Wrapping everything in RadzenLayout should be enough. In the past we used different technique (collapsing the sidebar and expanding the body however this is now obsolete) - you can remove the bindings to Expanded properties.
Removing the Expanded property of body is ok, but removing it from the sidebar breaks the sidebar. I am using the latest version of Radzen and bootstrap 5.2
I've uploaded the app App on mobile everything is just way to zoomed out, if I rotate the phone in landscape it looks good, but in portrait it doesn't.
this is my index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ConstructionWASM</title>
<base href="/" />
<link href="css/app.css" rel="stylesheet" />
<link href="manifest.json" rel="manifest" />
<!-- If you add any scoped CSS files, uncomment the following to load them -->
<link href="ConstructionWASM.Client.styles.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="css/custom.css" rel="stylesheet" />
<link rel="stylesheet" href="_content/Radzen.Blazor/css/material-base.css">
</head>
<body>
<div id="app">Loading...</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
<script src="sw-registrator.js"></script>
<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>
</body>
</html>