Improve progress bar layout

This commit is contained in:
Andrew Nicolaou 2019-11-25 11:15:10 +01:00
parent 8adb1347ba
commit 8132a029f5
2 changed files with 18 additions and 11 deletions

View file

@ -23,14 +23,14 @@ const AssetSize = ({ totalSize }) => {
const currentSize = prettyBytes(totalSize);
const sizeLimit = prettyBytes(MAX_SIZE_B);
const percent = formatPercent(totalSize / MAX_SIZE_B);
const percentValue = totalSize / MAX_SIZE_B;
const percent = formatPercent(percentValue);
return (
<div className="asset-size" style={{ '--percent': percent }}>
<div className="asset-size-bar">
<p className="asset-current">{currentSize} ({percent})</p>
<p className="asset-max">Max: {sizeLimit}</p>
</div>
<div className="asset-size" style={{ '--percent': percentValue }}>
<div className="asset-size-bar" />
<p className="asset-current">{currentSize} ({percent})</p>
<p className="asset-max">Max: {sizeLimit}</p>
</div>
);
};

View file

@ -1,6 +1,8 @@
.asset-size {
font-size: #{14 / $base-font-size}rem;
position: relative;
flex: 1;
margin-bottom: #{18 / $base-font-size}rem;
font-size: #{14 / $base-font-size}rem;
}
.asset-size-bar {
@ -10,6 +12,10 @@
width: 200px;
height: 20px;
border-radius: #{3 / $base-font-size}rem;
border: 1px solid transparent;
overflow: hidden;
@include themify() {
background-color: getThemifyVariable('progress-bar-background-color');
}
@ -22,7 +28,7 @@
top: 0;
left: 0;
bottom: 0;
width: var(--percent);
width: calc(var(--percent) * 100%);
@include themify() {
background-color: getThemifyVariable('progress-bar-active-color');
@ -32,13 +38,14 @@
.asset-current {
position: absolute;
top: 28px;
left: var(--percent);
left: calc(200px * var(--percent));
margin-left: -8px;
}
.asset-max {
position: absolute;
right: 0;
transform: translate(100%);
top: 0;
left: 0;
transform: translate(210%); // align max label to right of asset-size-bar
padding-left: #{8 / $base-font-size}rem;
}