Files
micro-frontend/accounting-ng-nuttakit/src/app/content/login-content/login-content.component.css
2025-11-11 10:52:30 +07:00

20 lines
672 B
CSS

:host {
display: block;
margin: 0;
padding: 0;
width: 100%;
height: 100vh; /* ครอบเต็มหน้าจอ */
overflow: hidden; /* ปิด scroll bar */
box-sizing: border-box;
}
.login-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: column; /* ✅ แก้ตรงนี้ จาก row → column */
align-items: center; /* ✅ จัดให้อยู่กลางแนวนอน */
justify-content: center; /* ✅ จัดให้อยู่กลางแนวตั้ง */
text-align: center; /* ✅ ให้ข้อความตรงกลาง */
}