modify.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // 회원 정보 수정
  2. #accountModify {
  3. position: relative;
  4. > dl {
  5. margin-bottom: 1.5rem;
  6. dt {
  7. font-size: 17px;
  8. margin-bottom: 10px;
  9. }
  10. dd {
  11. font-size: 13px;
  12. }
  13. }
  14. form {
  15. margin-bottom: 0;
  16. table {
  17. border: none;
  18. tbody {
  19. tr {
  20. th {
  21. hr {
  22. margin: 0.6rem 0;
  23. }
  24. }
  25. td {
  26. text-align: left;
  27. #btnChangeEmail {
  28. text-decoration: none;
  29. &:hover,
  30. &:focus {
  31. text-decoration: underline;
  32. }
  33. }
  34. hr {
  35. margin: 0.3rem 0;
  36. }
  37. }
  38. }
  39. }
  40. }
  41. }
  42. }