employee-group-unit.component.scss 1.65 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
.button-clear {
  position: absolute;
  top: 96px;
  z-index: 1;
  right: 41vw;
}
.button-help {
  position: absolute;
  top: 96px;
  z-index: 1;
  right: 35vw;
}

table.ti-custom-table thead {
  height: 50px;
}
table.ti-custom-table thead th span {
  font-size: 12px;
  font-weight: bold;
}
a.custom-link {
  padding: 10px 40px; /* ปรับ padding ให้เพิ่มขนาด */
23 24 25 26 27 28 29 30 31
}
.ti-modal-content-upload{
  background-color: white;
  width: 25%;  /* ความกว้างที่คุณต้องการ */
  height: 80%;
  position: absolute; /* ทำให้สามารถจัดตำแหน่งได้ */
  top: 50%;  /* ให้อยู่กลางในแนวตั้ง */
  left: 50%;  /* ให้อยู่กลางในแนวนอน */
  transform: translate(-50%, -50%); /* เคลื่อนที่ modal กลับมาให้ตรงกลาง */
32 33 34 35 36 37 38 39 40 41
}
.modal-headerupload{
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-width: 1px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
42 43 44 45 46 47 48 49 50 51
}
.ti-modal-center{
  width: 100%;
  height: 45px;
  margin-top: 2px;
}
.ti-modal .ti-modal-body{
  padding: 16px;
  padding-top: 0rem;
  overflow-y: 0%;
52 53 54 55 56 57 58 59
}
.header-title-type {
  width: 100%;
  min-height: 50px; /* ใช้ min-height เพื่อให้มีความยืดหยุ่น */
  margin-top: 50px;
  margin-bottom: 10px;
  justify-content: space-between; /* จัดเรียงองค์ประกอบภายใน */
  align-items: center; /* จัดกลางแนวตั้ง */
60
}