| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // 회원 정보 수정
- #accountModify {
- position: relative;
- > dl {
- margin-bottom: 1.5rem;
- dt {
- font-size: 17px;
- margin-bottom: 10px;
- }
- dd {
- font-size: 13px;
- }
- }
- form {
- margin-bottom: 0;
- table {
- border: none;
- tbody {
- tr {
- th {
- hr {
- margin: 0.6rem 0;
- }
- }
- td {
- text-align: left;
- #btnChangeEmail {
- text-decoration: none;
- &:hover,
- &:focus {
- text-decoration: underline;
- }
- }
- hr {
- margin: 0.3rem 0;
- }
- }
- }
- }
- }
- }
- }
|