Skip to content
Snippets Groups Projects
hy-user-login-form.scss 714 B
Newer Older
  • Learn to ignore specific revisions
  • :host {
      display: block;
    }
    
    .hy-user-login-form {
      font-family: var(--main-font-family);
    
      .user-login-form {
        position: relative;
    
        .hy-login-label {
          margin-top: 16px;
        }
    
        input {
          display: block;
          margin: 8px 0 0 0;
          min-height: 32px;
        }
    
        label {
          @include font-size(16px, 16px);
          @include font-weight($bold);
          display: block;
        }
    
        label:before {
          content: '*';
          padding-right: 3px;
        }
    
        div#edit-name--description {
          @include font-size(14px, 14px);
          margin-top: 8px;
          margin-bottom: 20px;
        }
        div#edit-pass--description {
          display: none;
        }
    
        div#edit-actions {
          margin-top: 32px;
        }
      }
    }