Sha256: 4cf404ae7f76d1021f453df27e611a3dce13e92418f2dffeabf04e4a19b4455c

Contents?: true

Size: 686 Bytes

Versions: 2

Compression:

Stored size: 686 Bytes

Contents

//
// FORM-SPECIFIC MIXINS
//
@mixin uc-field-style {
  @include border-radius(3px);
  padding: 0.4em;
  font-family: $font-family;
  font-size: $font-size;
  line-height: 1.5em;
  height: 2.3em;
  background-color: white;
  border: $light-border-width solid $border-color;
  @media #{$small-tablet} {
    font-size: $uc-form-embiggened-input-font-size;
  }
  &:focus {
    border: $solid-middle-blue-2-border;
  }
}

@mixin uc-form-flow-margin {
  margin-bottom: $gutter * 2;
}

@mixin uc-label {
  display: block;
  margin-bottom: $gutter*0.5;
  font-weight: $semibold-weight;
  color: $dark-gray;
  @media #{$small-tablet} {
    font-size: $uc-form-embiggened-label-font-size;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
undercase-0.2.57 app/assets/stylesheets/undercase/libraries/mixins/_forms.scss
undercase-0.2.29 app/assets/stylesheets/undercase/libraries/mixins/_forms.scss