Underscore filename for components

This commit is contained in:
Raphael Goetter 2017-08-28 17:10:31 +02:00
parent c5d37f172f
commit 35c42d2b4b
16 changed files with 16 additions and 16 deletions

View file

@ -0,0 +1,24 @@
/* ----------------------------- */
/* ==Media object */
/* ----------------------------- */
/* see http://codepen.io/raphaelgoetter/pen/KMWWwj */
@media (min-width: $tiny) {
.media {
display: flex;
align-items: flex-start;
&-media-content {
flex: 1;
}
// vertical align image
&-figure--center {
align-self: center;
}
// reverse variant
&--reverse {
flex-direction: row-reverse;
}
}
}