20 lines
672 B
CSS
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; /* ✅ ให้ข้อความตรงกลาง */
|
||
|
|
}
|