Skip to content
This repository was archived by the owner on Nov 22, 2022. It is now read-only.

Commit f2c6272

Browse files
Add progress bar styles
1 parent cbc1bf4 commit f2c6272

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

library/src/starterkit/lib/lab.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,3 +321,20 @@ table:not(.table-plain) > tbody > tr > th {
321321
table.table-striped tr:nth-child(odd) td {
322322
background-color: var(--color-border-internal)
323323
}
324+
325+
/* Progress bar */
326+
.progress {
327+
width: 100%;
328+
height: 8px;
329+
overflow: hidden;
330+
margin: 0.2rem 0 0.4rem;
331+
border-radius: 2px;
332+
border: 1px solid var(--color-border);
333+
}
334+
.progress .progress-bar {
335+
width: 0%;
336+
min-height: 8px;
337+
background-color: var(--color-gray-background);
338+
border-right: 1px solid var(--color-border-internal);
339+
box-sizing: content-box;
340+
}

0 commit comments

Comments
 (0)