section-registration.component.scss 1.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
.button-clear {
  position: absolute;
  top: 96px;
  z-index: 1;
  right: 41vw;
}
.button-help {
  position: absolute;
  top: 96px;
  z-index: 1;
  right: 35vw;
}
13 14 15 16 17 18
table.ti-custom-table thead {
  height: 50px;
}
table.ti-custom-table thead th span {
  font-size: 12px;
  font-weight: bold;
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
}
.ti-modal-content-search{
  width: 90%;  /* ความกว้างที่คุณต้องการ */
  position: absolute; /* ทำให้สามารถจัดตำแหน่งได้ */
  top: 50%;  /* ให้อยู่กลางในแนวตั้ง */
  left: 50%;  /* ให้อยู่กลางในแนวนอน */
  transform: translate(-50%, -50%); /* เคลื่อนที่ modal กลับมาให้ตรงกลาง */
  background-color: #fff;
  overflow-y: auto;
}
.ti-modal-body-search {
  display: flex; /* ใช้ flexbox เพื่อจัดตำแหน่ง */
  justify-content: center; /* จัดฟอร์มให้อยู่กลางในแนวนอน */
  flex-direction: column; /* ทำให้ฟอร์มแสดงผลในรูปแบบคอลัมน์ */
  height: calc(100% - 50px); /* ให้ความสูงเป็น 100% ลบด้วยระยะห่างข้างบน */
  margin-left: 100px;
  margin-right: 50px;
36 37 38 39 40 41 42 43 44 45
}
.ti-modal-center{
  width: 100%;
  height: 45px;
  margin-top: 2px;
}
.ti-modal .ti-modal-body{
  padding: 16px;
  padding-top: 0rem;
  overflow-y: 0%;
46 47 48 49 50 51 52
}
.header-title-type {
  width: 100%;
  min-height: 50px; /* ใช้ min-height เพื่อให้มีความยืดหยุ่น */
  margin-bottom: 10px;
  justify-content: space-between; /* จัดเรียงองค์ประกอบภายใน */
  align-items: center; /* จัดกลางแนวตั้ง */
53
}