This commit is contained in:
Park Byung Eun 2022-07-26 09:19:50 +00:00
parent a5f5035357
commit c5420365e8
2 changed files with 10 additions and 10 deletions

View File

@ -80,13 +80,13 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div class="hidden lg:block"> <div>
<mat-checkbox></mat-checkbox> <mat-checkbox></mat-checkbox>
</div> </div>
<div class="hidden lg:block">번호</div> <div>번호</div>
<div class="hidden lg:block"> <div>
제목 제목
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
작성일 작성일
@ -94,7 +94,7 @@
조회수 조회수
</div> </div>
<div class="hidden lg:block"> <div>
작성자 작성자
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
등급 등급
@ -105,7 +105,7 @@
<div class="hidden md:block">최근충전</div> <div class="hidden md:block">최근충전</div>
<div class="hidden md:block">최근로그인</div> <div class="hidden md:block">최근로그인</div>
<div class="hidden md:block">사이트</div> <div class="hidden md:block">사이트</div>
<div class="hidden lg:block"> <div>
답변 답변
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
상태 상태

View File

@ -43,21 +43,21 @@ import { Router } from '@angular/router';
` `
.inventory-grid { .inventory-grid {
/* CB 번호 제목 작성자 답변 */ /* CB 번호 제목 작성자 답변 */
grid-template-columns: 20px 40px auto 100px 100px; grid-template-columns: 20px 40px auto 140px 140px;
@screen sm { @screen sm {
/* CB 번호 제목 작성자 최근충전 답변 */ /* CB 번호 제목 작성자 최근충전 답변 */
grid-template-columns: 20px 40px auto 100px 100px; grid-template-columns: 20px 40px auto 140px 140px;
} }
@screen md { @screen md {
/* CB 번호 제목 작성자 최근충전 답변 */ /* CB 번호 제목 작성자 최근충전 답변 */
grid-template-columns: 20px 40px auto 100px 100px; grid-template-columns: 20px 40px auto 140px 140px 140px;
} }
@screen lg { @screen lg {
/* CB 번호 제목 작성자 메모 최근충전 최근로그인 사이트 답변 */ /* CB 번호 제목 작성자 메모 최근충전 최근로그인 사이트 답변 */
grid-template-columns: 20px 40px auto 100px 40px 140px 140px 140px 140px; grid-template-columns: 20px 40px auto 140px 40px 140px 140px 140px 140px;
} }
} }
`, `,