I am having a single shared repo for both web,mobile app, i am useing syfusion blazor web templates
<SfDropDownList TValue="string" TItem="Cars" Placeholder="Select a Car" AllowFiltering="true" DataSource="filteredCars" @bind-Value="model.Car" Enabled="!isLoadingCar">
<DropDownListFieldSettings Text="CarName" Value="DisplayId" />
<DropDownListEvents TValue="string" TItem="
Cars
" ValueChange="clearAndReftech"></DropDownListEvents>
</SfDropDownList>
in web when i am testing in browser it work correctly
i want to add a mrging top of 50px when in mobile device so popup will start just below appbar
i found that i cant override the style for dropdwon list as this hight,margin is set dynamicallly on dropdwon click, please guide me