Files
micro-frontend/templete/src/app/content/login-content/login-content.component.css

20 lines
672 B
CSS
Raw Normal View History

2025-11-11 11:19:13 +07:00
: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; /* ✅ ให้ข้อความตรงกลาง */
}