You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/components/_progress.scss

23 lines
499 B

/**
* <div class="progress">
* <div class="progress__inner" style="width: 20%"></div>
* </div>
*
* @author Björn Hase, me@herr-hase.wtf
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.node001.net/tiny-components/plain-ui.git
*
*/
.progress {
height: 40px;
width: 100%;
border: $border;
&__inner {
height: 100%;
border: 1px solid var(--background-contrast);
background-color: var(--background);
}
}