Sticker Creator

This commit is contained in:
Ken Powers
2019-12-17 15:25:57 -05:00
committed by Scott Nonnenberg
parent 2df1ba6e61
commit 11d47a8eb9
123 changed files with 11287 additions and 1714 deletions

View File

@@ -0,0 +1,33 @@
@import '../mixins';
@import '../../stylesheets/variables';
.base {
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-top: 3px;
}
.item {
margin-left: 6px;
font: {
size: 11px;
family: $inter;
weight: normal;
}
}
.bubble {
composes: item;
color: rgba(255, 255, 255, 0.8);
}
.light {
composes: item;
color: $color-gray-60;
}
.dark {
composes: item;
color: rgba(255, 255, 255, 0.8);
}