I want this button to adjust its size according to the screen dimensions. The current code keeps the button fixed in place. See below for the code snippet.
<button type="button" [className]="'btn btn-block m-0'" kendoButton id="btnLogin1" *ngIf="!opened"
(click)="open()">Login</button>
Here is the CSS Code:
#btnLogin1 {
background-color: #0057b8;
border: 1px solid #0057B8;
color: #fff !important;
height: 35px;
width: 200px;
font-size: large;
margin: 35px 0 0;
padding: 25px 100px;
font-weight: 700;
border-radius: 10px;
}