Stop using images and use HTML/CSS to render stacks

This commit is contained in:
2020-03-08 00:20:30 -08:00
parent fb544e0545
commit a7a6d7ff13
23 changed files with 125 additions and 16 deletions

18
assets/scss/stack.scss Normal file
View File

@@ -0,0 +1,18 @@
@import "style.scss";
.stack {
display: flex;
flex-direction: column;
max-width: 10rem;
margin: auto;
@include bordered-block;
}
.stack-element {
text-align: center;
height: 1.5rem;
&:not(:last-child) {
border-bottom: $standard-border;
}
}