📚 Added a library with a masonry grid

This commit is contained in:
2021-09-20 08:24:03 -07:00
parent 8e518c93a8
commit 7d56be71f9
10 changed files with 150 additions and 9 deletions

View File

@@ -278,6 +278,24 @@ $border-color: red;
}
}
// Library grid
.my-masonry-grid {
display: -webkit-box; /* Not needed if autoprefixing */
display: -ms-flexbox; /* Not needed if autoprefixing */
display: flex;
margin-left: -30px; /* gutter size offset */
width: auto;
}
.my-masonry-grid_column {
padding-left: 30px; /* gutter size */
background-clip: padding-box;
}
/* Style your items */
.my-masonry-grid_column > div { /* change div to reference your elements you put in <Masonry> */
margin-bottom: 20px;
}
// progress
.progress-indicator-container {
height: 100%;