connect.scss 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. form{
  2. &.user-login-form{
  3. padding: 2rem;
  4. background: white;
  5. & > div {
  6. &:not(:last-child){
  7. margin-bottom: 2rem;
  8. }
  9. .js-form-required{
  10. margin-bottom: 0;
  11. font-family: 'truenoregular';
  12. }
  13. input{
  14. border: 2px solid $color2;
  15. border-radius: 10px;
  16. padding: 0.5rem;
  17. &:focus{
  18. border: 2px solid $color1;
  19. border-radius: 10px!important;
  20. padding: 0.5rem!important;
  21. outline: none!important;
  22. }
  23. }
  24. .description{
  25. font-size: 0.8rem;
  26. margin-top: 0.4rem;
  27. font-family: 'truenolight';
  28. }
  29. }
  30. #edit-actions{
  31. display: flex;
  32. input{
  33. margin: auto;
  34. background: white;
  35. &:hover{
  36. @include shadow;
  37. }
  38. }
  39. }
  40. }
  41. }