Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/components / src / core / utilities.css
Size: Mime:
/**
 * Inline List
 */
.u-inlineList {
  list-style-type: none;

  padding: 0;
  margin: 0;

  text-align: center;
}
/**
 * Bad for performances...
 */
.u-inlineList li {
  display: inline-block;

  &:not(:last-child):after {
    content: '\2022';
    margin: 0 var(--space);
  }
}

.u-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

/**
 * Visible only to screen readers
 * Credits: https://github.com/twbs/bootstrap/blob/29d58fb758683db42c2d716ac654dea3ab6063c7/scss/mixins/_screen-reader.scss
 */
.u-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}