2
0

_account.scss 458 B

12345678910111213141516171819202122
  1. .w-avatar-panel {
  2. &__image {
  3. // do not display the user image if the clearing image is checked
  4. .avatar-clear:checked ~ .avatar.avatar-span {
  5. display: none;
  6. }
  7. // do not display the gravatar image when the input is not checked
  8. .avatar-clear:not(:checked) ~ .avatar.gravatar {
  9. display: none;
  10. }
  11. }
  12. &__form {
  13. label {
  14. display: block;
  15. padding: 0;
  16. width: unset;
  17. margin-bottom: 10px;
  18. }
  19. }
  20. }