 나는 각도에 대한 초보자입니다. 내가 현재 가지고있는 것은 콘텐츠가 매트 툴바 인 사이드 내비게이션 컨테이너입니다. 이제 내 질문은 보시다시피 전체 크기의 데스크톱으로 볼 때 도구 모음의 배경색이 늘어나 전체 너비를 채우는 반면 전화로 볼 때 배경색은 완전히 채워지지 않습니다. 보기에 좋지 않은 간격.
나는 각도에 대한 초보자입니다. 내가 현재 가지고있는 것은 콘텐츠가 매트 툴바 인 사이드 내비게이션 컨테이너입니다. 이제 내 질문은 보시다시피 전체 크기의 데스크톱으로 볼 때 도구 모음의 배경색이 늘어나 전체 너비를 채우는 반면 전화로 볼 때 배경색은 완전히 채워지지 않습니다. 보기에 좋지 않은 간격.
 
    나는 그것이 너비의 전체 공간을 차지할 것이라고 생각하여 매트 사이드 내비 콘텐츠 너비를 100 %로 설정하려고 시도했습니다.
 
    
 
    자세한 내용은 html입니다.
 
    <mat-sidenav-container class="sidenav-container">
    <mat-sidenav #drawer
                 class="sidenav"
                 fixedInViewport
                 [attr.role]="(isHandset$ | async) ? 'dialog' : 'navigation'" [mode]="(isHandset$ | async) ? 'over' : 'side'"
                 [opened]="false">
        <mat-toolbar>
            <button mat-button
                    (click)="drawer.close()">
                <mat-icon>close</mat-icon>
            </button>
        </mat-toolbar>
        <mat-nav-list>
            <a mat-list-item
               routerLink="/"
               (click)="drawer.close()">Home</a>
            <a mat-list-item
               routerLink="/products"
               (click)="drawer.close()">Products</a>
        </mat-nav-list>
    </mat-sidenav>
    <mat-sidenav-content>
        <mat-toolbar>
            <button type="button"
                    aria-label="Toggle Sidenav"
                    mat-icon-button
                    (click)="drawer.toggle()">
                <mat-icon aria-label="Side nav toggle Icon">menu</mat-icon>
            </button>
            <span class="logo"
                  routerLink="/">
                <img class="ww-logo"
                     src="assets/images/WWtrans.png" />
            </span>
            <div>
                <button mat-button
                        class="button">
                    <mat-icon aria-label="Search for a product"
                              svgIcon="search"></mat-icon>
                </button>
                <button mat-button
                        class="button">
                    <mat-icon aria-label="Login if the user hasn't logged in yet"
                              svgIcon="login"></mat-icon>
                </button>
                <button mat-button
                        class="button">
                    <mat-icon aria-label="Show what's inside the cart"
                              svgIcon="shopping-cart"></mat-icon>
                </button>
            </div>
        </mat-toolbar>
    </mat-sidenav-content>
</mat-sidenav-container>
 
    그리고 여기에 CSS가 있습니다
 
    .logo {
    display: flex;
    margin: auto auto;
    outline: none;
    align-self: center;
    justify-content: center;
    align-self: center;
    min-width: 100px;
    max-width: 100px;
    .ww-logo {
        width: 60%;
        cursor: pointer;
    }
}
.button {
    border: 1px solid red;
    width: 10px;
}
.sidenav-container {
    height: 100%;
    width: 100%;
}
mat-sidenav-content {
    width: 100%;
}
 
    미리 도움을 주셔서 감사합니다